write a program that will print %d in the output screen??
Answer Posted / vignesh1988i
void main()
{
printf("%%d");
getch();
}
where %% will print % and d will be printed asual
thank u
| Is This Answer Correct ? | 39 Yes | 2 No |
Post New Answer View All Answers
What is the difference between array and structure in c?
What is the difference between array_name and &array_name?
Why is c not oop?
What does a function declared as pascal do differently?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is data structure in c programming?
What do you understand by normalization of pointers?
What is the difference between Printf(..) and sprint(...) ?
What is the function of volatile in c language?
What is 1d array in c?
Why c is known as a mother language?
Write a code of a general series where the next element is the sum of last k terms.
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
What is bubble sort technique in c?