print out of string in this format;
1. "rajesh"
2. \n
3. %d
Answer Posted / saikiran
#include<stdio.h>
#include<conio.h>
void main()
{
char ch='d';
clrscr();
printf("1.\t""rajesh""\n");
printf("2.\t\\n\n");
printf("3.\t%%%c",ch);
getch();
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is this infamous null pointer, anyway?
What is build process in c?
What are the features of c language?
Explain enumerated types.
What are qualifiers in c?
Can you assign a different address to an array tag?
What is the code for 3 questions and answer check in VisualBasic.Net?
how to capitalise first letter of each word in a given string?
What is the equivalent code of the following statement in WHILE LOOP format?
Is c is a low level language?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
Do pointers need to be initialized?
How do you define a string?
What does a function declared as pascal do differently?
What is c programming structure?