write a program that will print %d in the output screen??
Answer Posted / ratish
void main()
{
printf("\%d");
}
| Is This Answer Correct ? | 1 Yes | 24 No |
Post New Answer View All Answers
How can you increase the size of a dynamically allocated array?
Explain union.
How would you obtain the current time and difference between two times?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
How is a structure member accessed?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
What is static function in c?
What is s or c?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
What are the loops in c?
How can I get back to the interactive keyboard if stdin is redirected?
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
What do you mean by keywords in c?
What are reserved words?
What is return in c programming?