how to execute with out main in cprogram
Answer Posted / rakesh
nice 1 ravinder..!!!
great work..!!
m also having same ans.!!
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What is 'bus error'?
Why main is used in c?
What is call by reference in functions?
How does normalization of huge pointer works?
Do you know the difference between exit() and _exit() function in c?
Explain what is a static function?
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 pointer to pointer in c?
How can I make it pause before closing the program output window?
When should the const modifier be used?
What is register variable in c language?
What is far pointer in c?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Does c have an equivalent to pascals with statement?
How do I create a directory? How do I remove a directory (and its contents)?