write a program that will print %d in the output screen??
Answer Posted / furquan
int main()
{
printf("%%d");
return 0;
}
| Is This Answer Correct ? | 96 Yes | 7 No |
Post New Answer View All Answers
What is break in c?
Differentiate fundamental data types and derived data types in C.
How to write c functions that modify head pointer of a linked list?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Explain the use of #pragma exit?
Why c is procedure oriented?
What are loops in c?
Why should I use standard library functions instead of writing my own?
What is linear search?
Do you know null pointer?
Can you think of a logic behind the game minesweeper.
What are the Advantages of using macro
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
What is the difference between if else and switchstatement