#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);
}
No Answer is Posted For this Question
Be the First to Post Answer
Is main a keyword in c?
write a program to create a sparse matrix using dynamic memory allocation.
write a c program to check weather a particluar bit is set or not?
The variables are int sum=10,SuM=20; these are same or different?
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?
write a program to print largest number of each row of a 2D array
Are pointers integer?
What are the benefits of organizational structure?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
what is the meaning of 'c' language
What is extern storage class in c?
atoi, which takes a string and converts it to an integer. write a program that reads lines(using getline), converts each line to an integer using atoi and computes the average of all the numbers read. also compute the standard deviation