Write any small program that will compile in "C" but not in
"C++"?
Answers were Sorted based on User's Feedback
Answer / sathish kumar
Hi All,
U can write many programs which will compile in C and not
in C++. Sample program.
const i; /* this is possible in C but not in C++ */
const int i; // it should be done like this in C++.
Thanks & Regards
Sathish Kumar
| Is This Answer Correct ? | 10 Yes | 2 No |
Answer / nousilal badavath
int new;//allowed in c but not in c++ because in c++
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / aashish kumar nath
We can do many programs which will run in C but not in C++
like if we declare
int class=8 /*It will run in C but not in c++ */
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / mms zubeir
There are some features in C that are truncated in C++. To
quote a few,
1. const int pi; // allowed in C.
const int pi = 3.14; // equivalent in C++.
2. char name[10];
for(int index = 0; index < 50; ++index)
{
scanf("%s", &name[index]); // sorry, I am weak in C.
}
This is allowed in C. That is, the array range checking
is not done in C. In C++, it will throw an out of range
error.
3. void function()
{
....
}
int main()
{
function(299);
return 0;
}
This is allowed in C but not in C++.
| Is This Answer Correct ? | 4 Yes | 4 No |
What is Namespace?
What is the best free c++ compiler for windows?
What is a singleton c++?
Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?
What is RTRT tool?can it be used for automation?can it work on packet PC?
Function can be overloaded based on the parameter which is a value or a reference. Explain if the statement is true.
Explain the concept of copy constructor?
What is compilation?
What are arithmetic operators?
When can you tell that a memory leak will occur?
How a new operator differs from the operator new?
Tell me difference between constant pointer and pointer to a constant.