What is the difference between NULL and NUL?


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

Post New Answer

More C Interview Questions

What is function prototype in c language?

0 Answers  


How can you convert integers to binary or hexadecimal?

0 Answers  


in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above

0 Answers  


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

0 Answers   Wilco,


How do you redirect a standard stream?

0 Answers  






What is difference between structure and union with example?

0 Answers  


Can I pass constant values to functions which accept structure arguments?

2 Answers  


What is static memory allocation? Explain

0 Answers  


When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?

0 Answers  


helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe

2 Answers  


why r u join this company? give solid resons.

16 Answers   IBM, Infosys, TCS,


write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.

1 Answers  


Categories