#define MAX 3
main()
{
printf("MAX = %d
",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
}
How can I get the current date or time of day in a c program?
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
write a c program for greatest of three numbers without using if statment
How do we declare variables in c?
What the different types of arrays in c?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
When is the “void” keyword used in a function?
Is flag a keyword in c?
Explain what are run-time errors?
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
List some applications of c programming language?
What is scope and lifetime of a variable in c?