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 union and structure in c?
When should volatile modifier be used?
What is null in c?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
What are the header files used in c language?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What are linker error?
What's the right way to use errno?
What are the rules for the identifier?
What is meant by preprocessor in c?
Why doesnt that code work?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
What is NULL pointer?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
Which is best book for data structures in c?