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 |
What is the purpose of the preprocessor directive error?
what is calloc and malloc?
what is c programming?
Explain what header files do I need in order to define the standard library functions I use?
is assignment operator is arithmatic or not
Write a program to find whether the given number is prime or not?
write a program to find lcm and hcf of two numbers??
HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE
Explain what are header files and explain what are its uses in c programming?
Explain how do you determine the length of a string value that was stored in a variable?
Difference between MAC vs. IP Addressing
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above