a=10;b= 5;c=3;d=3;
if(a printf(%d %d %d %d a,b,c,d)
else printf("%d %d %d %d a,b,c,d);


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

How can I return multiple values from a function?

6 Answers  


Can you think of a way when a program crashed before reaching main? If yes how?

2 Answers  


write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?

3 Answers   Broadcom, TCS,


what information does the header files contain?

6 Answers   BSNL, Cisco, GDA Technologies,


Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program

3 Answers   Subex,






When should volatile modifier be used?

0 Answers  


wat is the difference between array and pointer?

4 Answers   Wipro,


please can some one guide me, to the answer Write a C program to enter 15 numbers as an input from the keyboard and program will find and print odd numbers and their average. i have studied while and do while loop for loop if and else if switch

2 Answers  


In c language can we compile a program without main() function?

0 Answers  


What is the difference between single charater constant and string constant?

0 Answers  


Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1

6 Answers  


write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.

0 Answers   TCS,


Categories