C Programming :: Declarations and Initializations
-
Point out the error in the following program (if it is compiled with Turbo C compiler).
#include
int main() { display(); return 0; } void display() { printf("Freshergate.com"); } -
Point out the error in the following program.
#include
int main() { void v = 0; printf("%d", v); return 0; } -
Point out the error in the following program.
#include
-
Which of the following is correct about err used in the declaration given below?
typedef enum error { warning, test, exception } err;
-
Point out the error in the following program.
#include