What is difference between union All statement and Union?
No Answer is Posted For this Question
Be the First to Post Answer
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
what is the full form of c language
character array A[12] can hold
what is an array
What is true about the following C Functions a.Need not return any value b.Should always return an integer c.Should always return a float d.Should always return more than one value.
how to print "hai" in c?
What are compound statements?
What is a structure in c language. how to initialise a structure in c?
What is Conio.h ?
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
What does struct node * mean?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }