Thursday, 10 October 2013

C Linux interview questions and answers

C Linux interview questions and answers (1)What will be output if you will execute following program by gcc compiler in Linux? #include<stdio.h> int main(){     int a=5;     printf("%d %d %d",a++,a++,++a);     return 0; } Output: In LINUX GCC compiler 7 6 8 In TURBO C 7 6 6 Hints: In Turbo c parameter is passed from right to left in printf function but not in the Linux. (2)What will be output if you...

Wednesday, 9 October 2013

Data type questions in c

Data types interview questions and answers with explanation Note:  As you know size of data types is compiler dependent in c. Answer of all question is based upon that compilers whose word size is two byte. Just to know you, size of data type in 2 bytes compilers is as follow: char :   1 byte int :    2 byte float :  4 byte double : 8 byte Please adjust the answers according to size of data types in you compiler. Frequently asked technical objective types multiple choice...