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 benefit of using an enum rather than a #define constant?
What are terms in math?
Which is better malloc or calloc?
How can I use a preprocessorif expression to ?
Write a program to check palindrome number in c programming?
What is array of pointers to string?
Which programming language is best for getting job 2020?
Explain how can I make sure that my program is the only one accessing a file?
How to write c functions that modify head pointer of a linked list?
What is use of pointer?
Function calling procedures? and their differences? Why should one go for Call by Reference?
write a programming in c to find the sum of all elements in an array through function.
What is the importance of c in your views?
What are the __date__ and __time__ preprocessor commands?
How is a structure member accessed?