Answer Posted / pradeep
It is not a c program if it is not using main function.
Compiler starts execution from main function always.
| Is This Answer Correct ? | 18 Yes | 4 No |
Post New Answer View All Answers
What does %d do in c?
Why doesnt the call scanf work?
where are auto variables stored? What are the characteristics of an auto variable?
Do you know the difference between exit() and _exit() function in c?
Can an array be an Ivalue?
Explain how are portions of a program disabled in demo versions?
Why is it important to memset a variable, immediately after allocating memory to it ?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
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.
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
What is "Duff's Device"?
When the macros gets expanded?
What is call by value in c?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.