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
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
What does double pointer mean in c?
In C programming, what command or code can be used to determine if a number of odd or even?
How many levels of pointers can you have?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Write a code to remove duplicates in a string.
i want to know the procedure of qualcomm for getting a job through offcampus
What is the difference between class and object in c?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
Write a code of a general series where the next element is the sum of last k terms.
What is the difference between a string and an array?
What is restrict keyword in c?
why programs in c are running with out #include
how to write a c program to print list of fruits in alpabetical order?
Do you have any idea how to compare array with pointer in c?