What happens if a header file is included twice?


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

Post New Answer

More C Interview Questions

the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....

2 Answers   Ignou,


What is structure pointer in c?

0 Answers  


1,4,8,13,21,30,36,45,54,63,73,?,?.

10 Answers   AMB, Franklin Templeton,


Explain what will be the outcome of the following conditional statement if the value of variable s is 10?

0 Answers  


Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4

3 Answers  






How can type-insensitive macros be created?

0 Answers  


can we access one file to one directory?

1 Answers  


What is extern storage class in c?

0 Answers  


consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is

4 Answers   TCS,


for(;;) printf("C language") What is out put of above??

2 Answers   Practical Viva Questions,


When a c file is executed there are many files that are automatically opened what are they files?

0 Answers  


What is file in c language?

0 Answers  


Categories