Answer Posted / revathi
it has no meaning it does not return any value to the
operating system
| Is This Answer Correct ? | 12 Yes | 13 No |
Post New Answer View All Answers
What is a union?
What is s or c?
What is a #include preprocessor?
Is c is a low level language?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
Explain what is page thrashing?
How can I find out if there are characters available for reading?
swap 2 numbers without using third variable?
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); }
Can we change the value of constant variable in c?
What is the size of structure in c?
Write a program to find the biggest number of three numbers in c?
Does c have function or method?
What are the advantages of using linked list for tree construction?
What is use of bit field?