top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Is there something we can do in C but not in C++? [CLOSED]

+7 votes
226 views
Is there something we can do in C but not in C++? [CLOSED]
posted Nov 18, 2013 by Anuj Yadav

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+3 votes
#include < stdio.h >
int main(void)
{
    int old, new=3;
    return 0;
}

This will compile in C, but not in C++!

answer Nov 18, 2013 by Vikas Upadhyay
...