When was c language developed?
No Answer is Posted For this Question
Be the First to Post Answer
What is wrong with this declaration?
Give me the code of in-order recursive and non-recursive.
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?
Difference between C and Embedded C?
What is line in c preprocessor?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Write a program that receives as input a number omaadel-n-print, four digits.
in a town the percentage of men is 52 the percentage of total literacy is 48 if total percentage of literate men is 35 of the total population write a program to find the total no of the literate men and women if the population of the town is 80000
What are logical errors and how does it differ from syntax errors?
Explain the meaning of keyword 'extern' in a function declaration.
Explain what are its uses in c programming?
What's the total generic pointer type?