Write any small program that will compile in "C" but not
in "C++"

Answer Posted /

void main()
{
const var;
}

gives error in c++ but not in c....

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain one-definition rule (odr).

650


When to use “const” reference arguments in a function?

585


What is srand c++?

585


Perform addition, multiplication, subtraction of 2-D array using Operator Overloading.

3375


Why c++ is not a pure oop language?

560






Can we make any program in c++ without using any header file and what is the shortest program in c++.

618


Why do we learn c++?

534


A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.

1747


How many types of modularization are there in c++?

567


What are virtual functions in c++?

694


what is data encapsulation in C++?

609


what are the iterator and generic algorithms.

1485


which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?

724


Does c++ support exception handling?

600


What is c strings syntax?

612