write a program that will print %d in the output screen??
Answer Posted / vignesh1988i
void main()
{
printf("%%d");
getch();
}
where %% will print % and d will be printed asual
thank u
| Is This Answer Correct ? | 39 Yes | 2 No |
Post New Answer View All Answers
What is the difference between int main and void main in c?
Who is the main contributor in designing the c language after dennis ritchie?
Explain is it better to bitshift a value than to multiply by 2?
Simplify the program segment if X = B then C ← true else C ← false
What will be the outcome of the following conditional statement if the value of variable s is 10?
What is d scanf?
Write a program to find the biggest number of three numbers in c?
What is a double c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Explain the difference between malloc() and calloc() function?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
Define VARIABLE?
Find MAXIMUM of three distinct integers using a single C statement
What is zero based addressing?
What are identifiers in c?