print out of string in this format;
1. "rajesh"
2. \n
3. %d
Answer Posted / rajesh sharma
sir I am not knowing that answer of Question.
if you know the answer , please mail me the ans my mail
rajeshshrm136@gmail.com
please sir..
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is the use of ?
What is calloc malloc realloc in c?
What is getche() function?
what is the difference between 123 and 0123 in c?
What is the use of define in c?
Explain what are the different file extensions involved when programming in c?
write a program to concatenation the string using switch case?
What are the main characteristics of c language describe the structure of ac program?
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.
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
write a c program for swapping two strings using pointer
When we use void main and int main?
Once I have used freopen, how can I get the original stdout (or stdin) back?
Can you mix old-style and new-style function syntax?