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
Is null a keyword in c?
Differentiate between new and malloc(), delete and free() ?
Is calloc better than malloc?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
What is a pointer value and address in c?
What is infinite loop?
What is the purpose of the statement: strcat (S2, S1)?
Explain how can you avoid including a header more than once?
Explain how do you print an address?
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
Explain Basic concepts of C language?
Why is c faster?
What is the description for syntax errors?
List the variables are used for writing doubly linked list program.