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
Is it better to use malloc() or calloc()?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
How do you list a file’s date and time?
Explain what is a 'locale'?
Does c have enums?
Explain b+ tree?
Explain the difference between malloc() and calloc() in c?
What is the difference between a free-standing and a hosted environment?
Explain what is the benefit of using enum to declare a constant?
What is nested structure in c?
What is the difference between test design and test case design?
What was noalias and what ever happened to it?
What is identifiers in c with examples?
Do you know the difference between malloc() and calloc() function?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant