What are dangling pointers in c?
No Answer is Posted For this Question
Be the First to Post Answer
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?
Where is volatile variable stored?
Why can’t we compare structures?
What are logical errors and how does it differ from syntax errors?
Write a small C program to determine whether a machine's type is little-endian or big-endian.
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
Is null a keyword in c?
player is good if the following conditions are satisfied: He is either from “India”, “Japan” or “Korea” He has a minimum of 3 years of experience He has won at least 3 major tournaments, and one of them must be "World Championship Tournament". He must know more than 10 techniques. (but see next question) If he knows less than 10 techniques, then he must be a world champion. His name contains at least 3 words. For example "Sachin Tendulkar" will not meet this condition. Write a method: boolean isGoodPlayer(String name, String country, int yearsExperience, String[] majorTournamentsWon, String[] techniques, boolean isWorldChampion) name country yearsExperience majorTournamentsWon techniques isWorldChampion
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is linear search?
What is a function simple definition?