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 is difference between %d and %i in c?
Write a code to generate divisors of an integer?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
What are structures and unions? State differencves between them.
What is property type c?
What is the symbol indicated the c-preprocessor?
What does %c mean in c?
What are the 4 types of organizational structures?
Differentiate call by value and call by reference?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
What is array of structure in c?
How is = symbol different from == symbol in c programming?
What is the difference between int main and void main in c?
What are c preprocessors?
Why is c called "mother" language?