Answer Posted / satish
#include<stdio.h>
main(){
printf("%cd",37);// ASCII value of % = 37
}
| Is This Answer Correct ? | 14 Yes | 9 No |
Post New Answer View All Answers
why do some people write if(0 == x) instead of if(x == 0)?
How does #define work?
What is a program flowchart?
What is the difference between strcpy() and memcpy() function in c programming?
Explain the advantages and disadvantages of macros.
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What do mean by network ?
Explain is it valid to address one element beyond the end of an array?
I have seen function declarations that look like this
How do you list a file’s date and time?
Tell me when would you use a pointer to a function?
What is volatile c?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
List some basic data types in c?
What is structure in c explain with example?