write a program that will print %d in the output screen??
Answer Posted / mizanur
int main()
{
printf("%%d");
return 0;
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Why functions are used in c?
Differentiate between functions getch() and getche().
Are pointers really faster than arrays?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is sizeof array in c?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
Why n++ execute faster than n+1 ?
can we change the default calling convention in c if yes than how.........?
What is stack in c?
What is dynamic dispatch in c++?
What is new line escape sequence?
What is floating point constants?
Can variables be declared anywhere in c?
What is static function in c?
Why do we use null pointer?