print out of string in this format;
1. "rajesh"
2. \n
3. %d
Answer Posted / helen sobia
#include<stdio.h>
void main()
{clrscr();
char ch='d';
pritf("1.\t"rajesh"\n");
printf("2.\t\\n\n");
printf("3.\t%%s",ch);
getch();
}
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
How #define works?
What is data types?
Can you please explain the difference between exit() and _exit() function?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
write a c program to find the sum of five entered numbers using an array named number
What is the modulus operator?
Explain what is wrong with this program statement? Void = 10;
Describe dynamic data structure in c programming language?
Can a local variable be volatile in c?
What is null pointer in c?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What are multidimensional arrays?
What is c basic?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
How can I check whether a file exists? I want to warn the user if a requested input file is missing.