Answer Posted / rajasekhar
In c the header files get included along with the users code ultimately increases the size of the program..
where as in cpp the header files are do not include , but the objects navigates between library files and users code
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
find the sum of two matrices and WAP for it.
What are qualifiers and modifiers c?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
What are the uses of null pointers?
List the difference between a While & Do While loops?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
can we change the default calling convention in c if yes than how.........?
Explain is it better to bitshift a value than to multiply by 2?
What is the difference between ++a and a++?
What is linear search?
Can you please explain the difference between syntax vs logical error?
What is the use of printf() and scanf() functions?
Once I have used freopen, how can I get the original stdout (or stdin) back?