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 diffrance between declaration and defination of a variable or function
What is #pragma statements?
What are dangling pointers?
What is the Purpose of 'extern' keyword in a function declaration?
What is the main differences between C and Embedded C?
Are enumerations really portable?
why programming language C is still used in operating system's kernel??
code for reverse alternate words from astring
Table of Sudoku n*n
What are the advantages of Macro over function?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
What are the languages are portable and platform independent?Why they are like that?