main()
{
enum _tag{ left=10, right, front=100, back};
printf("%d, %d, %d, %d", left, right, front, back);
}
What are the advantages of Macro over function?
What is a void pointer? When is a void pointer used?
What is #pragma statements?
What are local static variables? How can you use them?
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
what is the difference between getch() and getchar()?
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.
Explain how can I convert a string to a number?
When was c language developed?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me