What is a list in c?


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

Post New Answer

More C Interview Questions

#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }

3 Answers   SRG,


What are void pointers in c?

0 Answers  


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

0 Answers  


What is a function in c?

0 Answers  


write a program for even numbers?

19 Answers   TCS,






void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?

7 Answers  


In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)

0 Answers   Wipro,


Explain the red-black trees?

0 Answers  


What is the heap in c?

0 Answers  


every function has return the value?

1 Answers  


int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?

14 Answers   Verifone,


What is the difference between i++ and i+1 ?(in terms of memory)

3 Answers   HCL,


Categories