Re: c++ code - not getting compiled !!!!!!!!!

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 07/29/2011 11:56 AM, ratheesh kannoth wrote:
> #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;

Changing it to two lines will make it work:
int j;
j = 6;

Regards,
Seenu.

>>>      cout<<  "j = "<<  j<<  endl;
>>>
>>>      cout<<  "Outside Sri"<<  endl;
>>>      return 0;
>>>
>>>  Sri:
>>>      cout<<  "Inside Sri"<<  endl;
>>>      return 0;
>>>  }

--
To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux Assembler]     [Git]     [Kernel List]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [C Programming]     [Yosemite Campsites]     [Yosemite News]     [GCC Help]

  Powered by Linux