Answer Posted / venkamma
better to see preves papers avalabule respected compines
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
how to count no of words,characters,lines in a paragraph.
Why c is called a mid level programming language?
Which header file is essential for using strcmp function?
Explain how can a program be made to print the line number where an error occurs?
write a program to find the given number is prime or not
Is it possible to use curly brackets ({}) to enclose single line code in c program?
Write a program to generate the Fibinocci Series
write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values. The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.
I have seen function declarations that look like this
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Write a program in c to replace any vowel in a string with z?
What are dangling pointers in c?