RE:
Write any small program that will compile in "C" but not in "C++"
There is nothing like that. A program written in C can be compiled in C++ also. Class declaration is not compulsary in C++ though it follows OOPS concept. But it needs at least one Class declaration for a Java program to be compiled.[LIST]null
RE:
Write any small program that will compile in "C" but not in "C++"
The following program compiles with 'C' with a warning about return type of main. But it wouldn't compile with 'C++' it gives error there: void main() { return; }