#define MAX 3
main()
{
printf("MAX = %d
",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
}
What is variable initialization and why is it important?
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
swapping of two numbers without using third variable using AND and OR operators
Difference between for loop and while loop?
Why doesnt the call scanf work?
Is the following code legal? struct a { int x; struct a b; }
write c program without semicolon
11 Answers MindTech, TCS, Wipro,
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
Software Interview Questions
what does ‘#include’ mean?
What is the purpose of realloc()?
Write a program to swap two numbers without using third variable?