#define MAX 3
main()
{
printf("MAX = %d
",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
}
how many argument we can pas in in a function
What does printf does?
accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input
Which of these functions is safer to use : fgets(), gets()? Why?
triangle number finding program...
Why pointers are used in c?
what are # pragma staments?
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
Can we write a program without main() function?
Can we declare a function inside a function in c?
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
Is reference used in C?