main()
{
enum _tag{ left=10, right, front=100, back};
printf("%d, %d, %d, %d", left, right, front, back);
}
write an algorithm and a program to count the number of elements in a circularly singly linked list
What is malloc() function?
What are conditional operators in C?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
What is difference between structure and union with example?
What is the collection of communication lines and routers called?
What is anagram in c?
why 'c' is called middle level language.
What is break in c?
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }