Explain how do you override a defined macro?
What is the use of define in c?
What is 2c dna?
What is clrscr in c?
main difference between c and c++ language
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
How can I find out the size of a file, prior to reading it in?
write a program in c language to print your bio-data on the screen by using functions.
What are the advantages of external class?
Can math operations be performed on a void pointer?
Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
What are the types of bitwise operator?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.