write a program that will print %d in the output screen??
Answers were Sorted based on User's Feedback
void main()
{
printf("%%d");
getch();
}
where %% will print % and d will be printed asual
thank u
| Is This Answer Correct ? | 39 Yes | 2 No |
Answer / mahendra vishwakarma
#include<stdio.h>
void main()
{
printf("%%d"); //this will print as %d output.
}
| Is This Answer Correct ? | 21 Yes | 0 No |
Answer / j j ramesh
# include <stdio.h>
void main()
{
puts("%d");
}
| Is This Answer Correct ? | 9 Yes | 5 No |
Answer / 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 |
what is the advantage of using SEMAPHORES to ORDINARY VARIABLES???
What are types of functions?
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
Multiply an Integer Number by 2 Without Using Multiplication Operator
What is an lvalue and an rvalue?
Can a variable be both const and volatile?
What is the difference b/w Structure & Union?
How do you initialize function pointers? Give an example?
what is the difference between const volatile int i & volatile const int j;
What is keyword with example?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?