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 are the restrictions of a modulus operator?
Explain 'far' and 'near' pointers in c.
What are header files and what are its uses in C programming?
Can a variable be both const and volatile?
Explain what does it mean when a pointer is used in an if statement?
Why & is used in c?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
How a string is stored in c?
What is the use of getchar() function?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
Why doesnt long int work?
Write a program to find the biggest number of three numbers in c?
What are the types of data types and explain?
Do you have any idea how to compare array with pointer in c?
Differentiate between calloc and malloc.