What is this infamous null pointer, anyway?


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

Post New Answer

More C Interview Questions

is c language is a object oreinted language?

5 Answers   TCS,


Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"

15 Answers   Accenture,


What is echo in c programming?

0 Answers  


1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=

16 Answers   CybOrg, Siemens,


What are structure members?

0 Answers  






What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }

5 Answers   Amazon, Qualcomm,


What is the best way to store flag values in a program?

0 Answers  


write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3

0 Answers   ADP,


What is a null string in c?

0 Answers  


What are reserved words with a programming language?

0 Answers  


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

0 Answers   Wilco,


int i=0,j; j=++i + ++i ++i; printf(" %d",j);

2 Answers   ME,


Categories