gauravkothari23
Advanced Member level 2
Hi all..
I need to know how can i call a lable created inside main function uaing some other function
For example.
In this above code i want to call the lable which is inside the main function from void function().
I need to know how can i call a lable created inside main function uaing some other function
For example.
Code:
Void Main()
{
While(1)
{
Code here.
Label:
{
While (1)
{
Code here
}
}
}
}
Void function
{
While(1)
{
Code here.
Call label inside main().
}
}