Answer Posted / ashutosh shashi
ram3
printf will print ram and printf function returns the
number of character it prints, so it will return 3, and
hence it will print ram3
| Is This Answer Correct ? | 19 Yes | 4 No |
Post New Answer View All Answers
Did c have any year 2000 problems?
How can a program be made to print the line number where an error occurs?
What is a pointer and how it is initialized?
What is assert and when would I use it?
what are the advantages of a macro over a function?
please send me the code for multiplying sparse matrix using c
What is union in c?
Write a program to print fibonacci series using recursion?
What is external variable in c?
Why do we write return 0 in c?
How many loops are there in c?
Find MAXIMUM of three distinct integers using a single C statement
Is javascript written in c?
What are the types of operators in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }