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
What is logical error?
What is c language & why it is used?
What is assert and when would I use it?
What is #define used for in c?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
Is a pointer a kind of array?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
Explain what is the difference between null and nul?
what are bit fields? What is the use of bit fields in a structure declaration?
Explain how are 16- and 32-bit numbers stored?
What is storage class?
How can you find out how much memory is available?
What is ambagious result in C? explain with an example.
What are the types of type qualifiers in c?