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
explain what are pointers?
What is difference between union and structure in c?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Define VARIABLE?
What does do in c?
Why C language is a procedural language?
what is uses of .net
How can I read a binary data file properly?
What is f'n in math?
Explain what are multidimensional arrays?
What is the difference between array_name and &array_name?
What are the advantages of using linked list for tree construction?
Write a program to know whether the input number is an armstrong number.
What is the use of pragma in embedded c?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?