write a program that will print %d in the output screen??
Answer Posted / aditya singh
//wap to print %d on the screen//
#include<stdio.h>
main()
{
char a = '%';
char b = 'd';
printf("%c",a);
printf("%c",b);
getch();
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
where are auto variables stored? What are the characteristics of an auto variable?
How can I do peek and poke in c?
Explain how are 16- and 32-bit numbers stored?
What is hash table in c?
What is advantage of pointer in c?
What is static and auto variables in c?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What does a pointer variable always consist of?
What is page thrashing?
Can stdout be forced to print somewhere other than the screen?
What does void main () mean?
What does int main () mean?
What is line in c preprocessor?
Why is a semicolon (;) put at the end of every program statement?
What are the 3 types of structures?