what is develop in c language
Answers were Sorted based on User's Feedback
wt is d full form of c
errors in computer programmes are called
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); }
What is the difference between formatted&unformatted i/o functions?
Find occurence of a character in a sting.
a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'
What does it mean when the linker says that _end is undefined?
what is the format specifier for printing a pointer value?
What should not contain a header file?
Whats s or c mean?
writw a program to insert an element in the begning of a doubly linked list
Is this program statement valid? INT = 10.50;