How do I get a null pointer in my programs?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between null pointer and wild pointer?
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
Write a simple code fragment that will check if a number is positive or negative.
Explain what is the most efficient way to store flag values?
what is difference between strcmp & palindrome?
1)what are limitations for recursive function? 2)write a program to read a text file and count the number of characters in the text file
What is structure in c definition?
Array is an lvalue or not?
How to swap 3 numbers without using 4th variable?
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
what is diff between localstatic and globalstatis variable possible 2 use in another file...?