Answer Posted / satish
#include<stdio.h>
main(){
printf("%cd",37);// ASCII value of % = 37
}
| Is This Answer Correct ? | 14 Yes | 9 No |
Post New Answer View All Answers
what is use of malloc and calloc?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
What is a far pointer in c?
What is the use of extern in c?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
Lists the benefits of c programming language?
Explain high-order bytes.
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 is getch?
FILE PROGRAMMING
What do you mean by a local block?
What is the difference between break and continue?
Can I initialize unions?
Which is better pointer or array?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only