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
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
c program for searching a student details among 10 student details
Explain About fork()?
Explain what are multidimensional arrays?
Can you add pointers together? Why would you?
What is #include stdlib h?
What is difference between structure and union?
What is getch () for?
What is cohesion and coupling in c?
Can a local variable be volatile in c?
How is a pointer variable declared?
What is a pointer value and address in c?
What are the string functions? List some string functions available in c.
Explain how can type-insensitive macros be created?
Give me the code of in-order recursive and non-recursive.