Is there something that we can do in C and not in C++?
Answer Posted / zarra
C++ will not allow declaration without initialization but C
will allow declaration without initialization.
And C++ and C both will not allow later initialization.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
Why pointer is used in c++?
What are c++ files?
I want to write a C++ language program that: 1. Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. The program should work for squares of all side sizes between 1 and 20.
Explain the register storage classes in c++.
Differentiate between a copy constructor and an overloaded assignment operator.
Where can I run c++ program?
What are the basics of local (auto) objects?
Write about the access privileges in c++ and also mention about its default access level?
Are strings immutable in c++?
Can you be able to identify between straight- through and cross- over cable wiring? And in what case do you use straight- through and cross-over?
Can we use pointers in c++?
Write is a binary search tree? Write an algo and tell complexity?
How const int *ourpointer differs from int const *ourpointer?
Which one between if-else and switch is more efficient?