#define MAX 3
main()
{
printf("MAX = %d
",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
}
How would you find a cycle in a linked list?
What is the difference between class and object in c?
what is the importance of spanning tree?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
What is structure in c explain with example?
Is using exit() the same as using return?
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
What is variable declaration and definition in c?
Explain what is a stream?
difference between native and cross compilers