out put of printf(“%d”,printf(ram));
Answers were Sorted based on User's Feedback
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 |
Answer / ramesh
if statement is like
printf("%d",printf("ram"));
then output is
ram3
else
variable ram is undeclared
Is This Answer Correct ? | 9 Yes | 0 No |
When is an interface "good"?
Which is best linux os?
what is the use of macro program
Explain what are preprocessor directives?
Why calloc is better than malloc?
count the numbers between 100 and 300, that star with 2 and ends with 2
what is meant by the "equivalence of pointers and arrays" in C?
What is a structure and why it is used?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
How can you increase the allowable number of simultaneously open files?
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?
Why void is used in c?