main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Answer Posted / jignesh patel
5 5
| Is This Answer Correct ? | 1 Yes | 12 No |
Post New Answer View All Answers
What is #ifdef ? What is its application?
Stimulate calculator using Switch-case-default statement for two numbers
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Is main is user defined function?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
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 are extern variables in c?
What is LINKED LIST? How can you access the last element in a linked list?
Explain how can I convert a number to a string?
What is a union?
What math functions are available for integers? For floating point?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
What is a built-in function in C?
What are the different types of objects used in c?
How we can insert comments in a c program?