#define MAX 3
main()
{
printf("MAX = %d
",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
}
What is the difference b/w Structure & Array?
What is masking?
Write a factorial program using C.
how to exchnage bits in a byte b7<-->b0 b6<-->b1 b5<-->b2 b4<-->b3 please mail me the code if any one know to rajeshmb4u@gmail.com
List some of the dynamic data structures in C?
can anyone proide me reading material on svit00ef27@yahoo.com please thanx in advance
pointer_variable=(typecasting datatype*)malloc(sizeof(datatype)); This is the syntax for malloc?Please explain this,how it work with an example?
2 Answers eClerx, Excel, kenexa,
Find errors (1) m = ++a*5; (2) a = b ++ -c*2; (3)y = sqrt (1000);
The C language terminator is a.semicolon b.colon c.period d.exclamation mark
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Explain #pragma statements.