In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
No Answer is Posted For this Question
Be the First to Post Answer
how to find out the inorder successor of a node in a tree??
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
different between overloading and overriding
What is the default value of local and global variables in c?
write a program to print calender using for loop.
What are the types of bitwise operator?
What is difference between arrays and pointers?
What’s a signal? Explain what do I use signals for?
what is the defrenece between structure and union
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
#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?
What is the purpose of & in scanf?