main()
{
enum _tag{ left=10, right, front=100, back};
printf("%d, %d, %d, %d", left, right, front, back);
}
Answer Posted / manisha
10,11,100,101
| Is This Answer Correct ? | 26 Yes | 1 No |
Post New Answer View All Answers
What is the hardest programming language?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Write a C program to help a HiFi’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the HiFi’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the HiFi’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80
What is volatile keyword in c?
differentiate built-in functions and user – defined functions.
Explain the use of keyword 'register' with respect to variables.
can any one provide me the notes of data structure for ignou cs-62 paper
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Can you please explain the difference between syntax vs logical error?
Write a code to generate divisors of an integer?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
Can we change the value of #define in c?
Write the control statements in C language
Explain what is wrong with this statement? Myname = ?robin?;
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.