any C program contains only one function, it must be
a) void ()
b) main ()
c) message ()
d) abc ()
No Answer is Posted For this Question
Be the First to Post Answer
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); }
hi how to convert program from notepad to turboc editor can u please help me
What is static function in c?
Explain how can I prevent another program from modifying part of a file that I am modifying?
how to find the given number is prime or not?
What is dynamic memory allocation?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
What is a keyword?
main() { float a=3.2e40; printf("%d",a); }
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
Whether there can be main inside another main?If so how does it work?