Does c have enums?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......

2 Answers  


What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these

3 Answers   IBM,


program to print upper & lower triangle of a matrix

2 Answers   TCS,


How to delete a node from linked list w/o using collectons?

0 Answers   Zycus Infotech,


How is a two dimensional array passed to function when the order of matrix is not known at complie time?

1 Answers   CSC,






What is pointer to pointer in c language?

0 Answers  


how do you execute a c program in unix.

0 Answers  


how to find out the reverse number of a digit if it is input through the keyboard?

6 Answers  


what do the 'c' and 'v' in argc and argv stand for?

0 Answers   TISL,


program for reversing a selected line word by word when multiple lines are given without using strrev

0 Answers   IBM,


differnce between do and do while

3 Answers   DOEACC,


Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.

0 Answers   IBM,


Categories