How do I get a null pointer in my programs?


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

Post New Answer

More C Interview Questions

Are there any problems with performing mathematical operations on different variable types?

0 Answers  


Explain how do you determine whether to use a stream function or a low-level function?

0 Answers  


write c program without semicolon

11 Answers   MindTech, TCS, Wipro,


write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)

10 Answers  


while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?

4 Answers   Aptech,


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

0 Answers  


What is meant by keywords in c?

0 Answers  


Which is best book for data structures in c?

0 Answers  


int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above

0 Answers  


Describe how arrays can be passed to a user defined function

0 Answers  


#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

2 Answers   Facebook,


What is the purpose of the statement: strcat (S2, S1)?

0 Answers  


Categories