printf("%d",(printf("Hello")); What it returns?
Answer Posted / rajesh
0
| Is This Answer Correct ? | 9 Yes | 62 No |
Post New Answer View All Answers
In c language can we compile a program without main() function?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
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.
Differentiate fundamental data types and derived data types in C.
What are the types of unary operators?
What is 2 d array in c?
what is the height of tree if leaf node is at level 3. please explain
What does a pointer variable always consist of?
Write a program to reverse a string.
What does 3 periods mean in texting?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is string length in c?
What is header file in c?
What are types of preprocessor in c?