print out of string in this format;
1. "rajesh"
2. \n
3. %d
Answer Posted / bibekananda bhuyan
#include <stdio.h>
int main (void)
{
printf("1."Rajesh"
");
printf("2.\n
");
printf("3.%%d");
return(0);
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
regarding pointers concept
Can two or more operators such as and be combined in a single line of program code?
Why void is used in c?
What are variables c?
How do we open a binary file in Read/Write mode in C?
Explain the properties of union. What is the size of a union variable
What is difference between static and global variable in c?
What is use of #include in c?
Explain what is the benefit of using an enum rather than a #define constant?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
Can variables be declared anywhere in c?
Is multithreading possible in c?
Why pointers are used in c?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
What does sizeof int return?