#define MAX 3
main()
{
printf("MAX = %d
",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
}
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
How would you find a cycle in a linked list?
program to print circle structure
How to explain the final year project as a fresher please answer with sample project
Write a program on swapping (100, 50)
write a program to display the array elements in reverse order in c language
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
what is use#in c
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
1,1,5,17,61,217,?,?.
What is a void * in c?
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none