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

find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2

0 Answers   TCS,


What is the difference between i++ and i+1 ?(in terms of memory)

3 Answers   HCL,


Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.

1 Answers   Wipro,


When should a far pointer be used?

0 Answers   Aspire, Infogain,


Write down the program to sort the array.

4 Answers   Impiger,






What's the best way of making my program efficient?

0 Answers   Celstream,


What is main () in c language?

0 Answers  


What is #include conio h?

0 Answers  


write a method for an array in which it can display the largest n next largest value.

1 Answers   Value Labs,


Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10

1 Answers   CMS,


Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

0 Answers  


An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array

0 Answers  


Categories