write a program that will print %d in the output screen??
Answer Posted / mahendra vishwakarma
#include<stdio.h>
void main()
{
printf("%%d"); //this will print as %d output.
}
| Is This Answer Correct ? | 21 Yes | 0 No |
Post New Answer View All Answers
Explain logical errors? Compare with syntax errors.
Why is c so powerful?
I need previous papers of CSC.......plz help out by posting them.......
How to explain the final year project as a fresher please answer with sample project
What are 'near' and 'far' pointers?
What are the 32 keywords in c?
How can a program be made to print the name of a source file where an error occurs?
Explain the difference between exit() and _exit() function?
What is formal argument?
What is sizeof array in c?
Write a program for Overriding.
What is a constant?
Are the outer parentheses in return statements really optional?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
How to delete a node from linked list w/o using collectons?