#define MAX 3
main()
{
printf("MAX = %d
",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
}
What is the advantage of an array over individual variables?
What is a header file?
Why clrscr is used after variable declaration?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
Do array subscripts always start with zero?
what are the 10 different models of writing an addition program in C language?
What is meant by initialization and how we initialize a variable?
why effort estimation is important?
Which sorting algorithm is the best?
why program counter is 16 bit?
how to TOGGLE Nth bit of variable in a MACRO
is c language is a object oreinted language?