If null and 0 are equivalent as null pointer constants, which should I use?


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

Post New Answer

More C Interview Questions

DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?

2 Answers   Wipro,


State the difference between realloc and free.

0 Answers   Aricent,


#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }

3 Answers  


Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program

3 Answers   Subex,


WAP to accept first name,middle name & last name of a student display its initials?

5 Answers   AITH, NIIT,






what is bitwise operator?

1 Answers   IBM,


#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }

1 Answers  


What is console in c language?

0 Answers  


Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;

2 Answers   Lucent,


What is the general form of function in c?

0 Answers  


Explain following declaration int *P(void); and int (*p)(char *a);

3 Answers  


What is an example of enumeration?

1 Answers  


Categories