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
What are the standard predefined macros?
Why is a semicolon (;) put at the end of every program statement?
Differentiate between null and void pointers.
What is bubble sort technique in c?
How variables are declared in c?
Can we increase size of array in c?
What does == mean in texting?
What are formal parameters?
How can I find out how much free space is available on disk?
What are data structures in c and how to use them?
How can I get the current date or time of day in a c program?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
How can I do graphics in c?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?