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
Explain can you assign a different address to an array tag?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What is floating point constants?
Can you pass an entire structure to functions?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What is a void pointer? When is a void pointer used?
what is use of malloc and calloc?
Write a program of prime number using recursion.
i want to know the procedure of qualcomm for getting a job through offcampus
What are the types of operators in c?
Why is python slower than c?
What is the difference between volatile and const volatile?
while initialization of array why we use a[][2] why not a[2][]...?
What is the difference between the expression “++a” and “a++”?
List some of the dynamic data structures in C?