c++ code - not getting compiled !!!!!!!!!
ratheesh kannoth <[email protected]> Fri, 29 Jul 2011 11:31:54 +0530
| Newsgroups | org.kernel.vger.linux-c-programming |
|---|---|
| Message-ID | <CAGZFCEFvwrbscViED2ZEC3Yh9p4EstTLkxxfQD8FJZS03OpsLw@mail.gmail.com> |
#include <iostream>
using namespace std;
int main()
{
int i;
cout << "Enter value of i " << endl;
cin >> i;
if (i < 5)
goto Sri;
int j = 6;
cout << "j = " << j << endl;
cout << "Outside Sri" << endl;
return 0;
Sri:
cout << "Inside Sri" << endl;
return 0;
}