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
Can a pointer be static?
What is a pointer variable in c language?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
What does the && operator do in a program code?
Differentiate between a structure and a union.
What is storage class?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What are the ways to a null pointer can use in c programming language?
What's the difference between constant char *p and char * constant p?
Explain what math functions are available for integers? For floating point?
What is int main () in c?
What is call by reference in functions?
Why enum is used in c?
Write a program on swapping (100, 50)