Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

Answer Posted / tareq

<code>
int class;
</code>

$gcc a.c -c; echo $?
0

$g++ a.c -c; echo $?
a.c:1: error: expected identifier before ';' token
a.c:1: error: multiple types in one declaration
a.c:1: error: declaration does not declare anything
1

Is This Answer Correct ?    1 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is c++ pass by reference or value?

1002


Is c++ double?

977


What is the main purpose of overloading operators?

1053


Explain the difference between using macro and inline functions?

1052


What are the different types of comments allowed in c++?

932


What happens if a pointer is deleted twice?

1223


Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?

2448


What is ios :: in in c++?

999


Does c++ have arraylist?

960


What is a local variable?

1031


What is set in c++?

1066


How do you declare a set in c++?

910


What is ostream in c++?

957


Write a function to find the nth item from the end of a linked list in a single pass.

921


What is ios in c++?

1158