int i=10;

printf("%d %d %d", i, i=20, i);


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

Post New Answer

More C Interview Questions

void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }

3 Answers  


What is the difference b/w main() in C language and main() in C++.

7 Answers  


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

0 Answers   Wilco,


What is non linear data structure in c?

0 Answers  


Write a program to print all permutations of a given string.

0 Answers   JPMorgan Chase,


Which is better malloc or calloc?

0 Answers  


Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)

2 Answers   HCL, IBM, Satyam, Vimal, Vimukti Technologies,


How can a program be made to print the name of a source file where an error occurs?

0 Answers  


Explain how do you view the path?

0 Answers  


What are the c keywords?

0 Answers  


What is the use of extern in c?

0 Answers  


Input any no. and print all the the numbers that comes before it like this for e.g input = 4 0 01 012 0123 01234 plz answer it 2day

3 Answers  


Categories