Is null always equal to 0(zero)?


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

Post New Answer

More C Interview Questions

Why can arithmetic operations not be performed on void pointers?

0 Answers  


what is the difference between postfix and prefix unary increment operators?

3 Answers  


How can I find out how much free space is available on disk?

0 Answers  


Is int a keyword in c?

0 Answers  


Tell me the use of bit field in c language?

0 Answers  






Give differences between - new and malloc() , delete and free() ?

0 Answers   Genpact,


#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }

3 Answers   Zoho,


what is the use of fflush() function?

2 Answers  


What are integer variable, floating-point variable and character variable?

0 Answers  


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


Are global variables static in c?

0 Answers  


what is the mean of c languages.

1 Answers   Polaris,


Categories