write a program to print %d ?

Answer Posted / agalya

#include<stdio.h>
#include<conio.h>
void main()
{
printf("\%d");
}

Is This Answer Correct ?    13 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above

617


What happens if header file is included twice?

659


Explain about the constants which help in debugging?

858


Explain threaded binary trees?

684


Explain what are the advantages and disadvantages of a heap?

599






Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.

2659


Why ca not I do something like this?

591


How do shell structures work?

575


What is the difference between if else and switchstatement

1318


How can I avoid the abort, retry, fail messages?

665


What is the use of c language in real life?

535


what do you mean by enumeration constant?

601


An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array

690


Explain about the functions strcat() and strcmp()?

601


write a c program to calculate sum of digits till it reduces to a single digit using recursion

2725