write a program that will print %d in the output screen??
Answer Posted / 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 |
Post New Answer View All Answers
what is the different bitween abap and abap-hr?
What is a example of a variable?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What is chain pointer in c?
What is advantage of pointer in c?
What is wrong with this program statement? void = 10;
Can you pass an entire structure to functions?
p*=(++q)++*--p when p=q=1 while(q<=6)
What are disadvantages of C language.
Explain what is a 'locale'?
What is a function in c?
What are the uses of null pointers?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
If errno contains a nonzero number, is there an error?
When should a type cast not be used?