Answer Posted / gunda rajkumar
"userdefined" because we are writing the code for main()
or we are defining the boby for main()
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
Define circular linked list.
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 difference between stdio h and conio h?
What will be your course of action for a push operation?
What are the application of c?
Why is c still so popular?
What is a header file?
If null and 0 are equivalent as null pointer constants, which should I use?
What is the maximum length of an identifier?
what is the height of tree if leaf node is at level 3. please explain
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
I need testPalindrome and removeSpace
#include
Why c language?
How can I generate floating-point random numbers?
What is bubble sort in c?