Can a file other than a .h file be included with #include?


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

Post New Answer

More C Interview Questions

Is Exception handling possible in c language?

0 Answers   Wipro,


difference between the array and linked list general difference related to memory

2 Answers  


main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }

4 Answers   Vector, Vector India,


#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.

8 Answers   IBM,


Explain do array subscripts always start with zero?

0 Answers  






Is fortran still used in 2018?

0 Answers  


How do we make a global variable accessible across files? Explain the extern keyword?

0 Answers  


how to find the binary of a number?

10 Answers   Infosys,


What is the difference between int main and void main in c?

0 Answers  


34.what are bitwise shift operators? 35.what are bit fields? What is the use of bit fields in a structure declaration? 36.what is the size of an integer variable? 37.what are the files which are automatically opened when a c file is executed? 38.what is the little endian and big endian? 39.what is the use of fflush() function? 40.what is the difference between exit() and _exit() functions? 41.where does malloc() function get the memory? 42.what is the difference between malloc() and calloc() function? 43.what is the difference between postfix and prefix unary increment operators?

3 Answers  


Why doesn't the code "a[i] = i++;" work?

4 Answers  


What is the use of pointers in C?

0 Answers   Impetus, Motorola, Tavant Technologies, Virtusa,


Categories