What should malloc() do? Return a null pointer or a pointer to 0 bytes?
No Answer is Posted For this Question
Be the First to Post Answer
What is the scope of static variables?
write a c program for greatest of three numbers without using if statment
What is c basic?
is c language is a object oreinted language?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
What is an auto variable in c?
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
What are the key features in c programming language?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is the auto keyword good for?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
write a program to compare 2 numbers without using logical operators?