main()
{
enum _tag{ left=10, right, front=100, back};
printf("%d, %d, %d, %d", left, right, front, back);
}
Explain how can I manipulate strings of multibyte characters?
what is the meaning of java that is (J A V A) full form of JAVA
71 Answers AKS University, Bhel, BNL, BPO, HCL, Peacecon,
Differentiate between the expression “++a” and “a++”?
who is the father of C Language?
20 Answers CTS, UST,
what are the facialities provided by you after the selection of the student.
Why pointers are used in c?
What are the primitive data types in c?
change to postfix a/(b+c*d-e)
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
What is extern keyword in c?
In C language, a variable name cannot contain?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?