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
C program to find all possible outcomes of a dice?
How can you increase the size of a dynamically allocated array?
Can you subtract pointers from each other? Why would you?
What are different storage class specifiers in c?
What are the different types of errors?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
Why & is used in scanf in c?
What are identifiers and keywords in c?
Why is c still so popular?
What is a stream water?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
a c code by using memory allocation for add ,multiply of sprase matrixes
What is the use of pragma in embedded c?
What is a pointer value and address in c?
Write a program to print numbers from 1 to 100 without using loop in c?