out put of printf(“%d”,printf(ram));

Answers were Sorted based on User's Feedback



out put of printf(“%d”,printf(ram));..

Answer / 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

out put of printf(“%d”,printf(ram));..

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

out put of printf(“%d”,printf(ram));..

Answer / rajkumar

the variable ram is undeclared,

Is This Answer Correct ?    4 Yes 4 No

out put of printf(“%d”,printf(ram));..

Answer / rama krishna sidhartha

the variable ram is undeclared,

Is This Answer Correct ?    0 Yes 1 No

out put of printf(“%d”,printf(ram));..

Answer / shivani sharma

printf(ram)

Is This Answer Correct ?    0 Yes 14 No

Post New Answer

More C Interview Questions

What is the size of structure pointer in c?

0 Answers  


Explain what is the benefit of using const for declaring constants?

0 Answers  


Explain what is the difference between declaring a variable and defining a variable?

1 Answers  


Can two or more operators such as and be combined in a single line of program code?

0 Answers  


change to postfix a/(b+c*d-e)

8 Answers   Value Labs,






What would happen to X in this expression: X += 15; (assuming the value of X is 5)

0 Answers  


writ a program to compare using strcmp VIVA and viva with its output.

0 Answers  


Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix

0 Answers   CLG,


How can I find the modification date of a file?

0 Answers   Celstream,


plssssss help !!....using array.. turbo c.. create a program that will accept number of words to be consored. .a word must not exceed 10 characters long .the text to be entered will be no longer than 200 characters .there will be no 10 words example: enter number of words to be censor: 5 enter words to censor: windows office microsoft bill gates enter text to censor: bill gates founded microsoft and makes office and windows sample output: <consored> <censored> founded <censored> and makes <censored> and <censored>

1 Answers  


a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above

3 Answers  


Does free set pointer to null?

0 Answers  


Categories