write a program that will print %d in the output screen??
Answer Posted / mahendra vishwakarma
#include<stdio.h>
void main()
{
printf("%%d"); //this will print as %d output.
}
Is This Answer Correct ? | 21 Yes | 0 No |
Post New Answer View All Answers
Why c is known as a mother language?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Should I learn c before c++?
If you know then define #pragma?
what value is returned to operating system after program execution?
What's the best way of making my program efficient?
What is c standard library?
When a c file is executed there are many files that are automatically opened what are they files?
What is queue in c?
Does c have function or method?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
what are enumerations in C
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
In a switch statement, what will happen if a break statement is omitted?
Can variables be declared anywhere in c?