Can the sizeof operator be used to tell the size of an array passed to a function?
No Answer is Posted For this Question
Be the First to Post Answer
Do you know the use of 'auto' keyword?
What is operator promotion?
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?
What is #define used for in c?
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
writ a program to compare using strcmp VIVA and viva with its output.
What are the rules for identifiers in c?
Who developed c language?
What is zero based addressing?
Can we access array using pointer in c language?
What is "Hungarian Notation"?