Is it possible to run a c program without using main?If yes
HOW??
Answer Posted / adesh
#define adesh(x,y) y##x
int adesh(in,ma) (void)
{
;
}
| Is This Answer Correct ? | 13 Yes | 3 No |
Post New Answer View All Answers
What is identifier in c?
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.
What is the purpose of sprintf?
write a c program to find the sum of five entered numbers using an array named number
What are the application of c?
Explain what is the benefit of using enum to declare a constant?
What are header files and explain what are its uses in c programming?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
Are pointers integers in c?
Differentiate fundamental data types and derived data types in C.
How can I do peek and poke in c?
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 use of f in c?
Why is a semicolon (;) put at the end of every program statement?
What are pragmas and what are they good for?