What is pointer in c?
All technical questions
What does extern mean in a function declaration?
can we initialize all the members of union?
Why is structure important for a child?
When can you use a pointer with a function?
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
size maximum allocated by calloc()
why do we use # in c-language?
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
What is operator promotion?
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
What does & mean in scanf?