#define MAX 3
main()
{
printf("MAX = %d
",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
}
array of pointer pointer to array pointer to pointer
Rapunzel walks into the forest of forgetfullness. She meets a Lion who lies on Monday Tuesdays and Wednesdays and meets a rabbit who lies on Thurs fridays and saturdays . On that day both say that "I lied yesterday". What day is it .
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
What is the difference between void main and main in c?
Why is c not oop?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL
What is an expression?
What is the difference between Printf(..) and sprint(...) ?
Why is event driven programming or procedural programming, better within specific scenario?
You are given a string which contains some special characters. You also have set of special characters. You are given other string (call it as pattern string). Your job is to write a program to replace each special characters in given string by pattern string. You are not allowed to create new resulting string. You need to allocate some new memory to given existing string but constraint is you can only allocate memory one time. Allocate memory exactly what you need not more not less.
What is the difference between struct and typedef struct in c?
Explain what is the difference between declaring a variable and defining a variable?