what is available in C language but not in C++?
Answer Posted / chandrasekhar
c progrm donein top to bottom apparoch but c++bottom to top
apparoch
| Is This Answer Correct ? | 18 Yes | 1 No |
Post New Answer View All Answers
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Explain 'far' and 'near' pointers in c.
Do you know the use of 'auto' keyword?
Differentiate between the expression “++a” and “a++”?
Explain low-order bytes.
what are the facialities provided by you after the selection of the student.
What is structure and union in c?
what value is returned to operating system after program execution?
Define C in your own Language.
how could explain about job profile
Explain how are 16- and 32-bit numbers stored?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What is null in c?
Subtract Two Number Without Using Subtraction Operator
How can I read in an object file and jump to locations in it?