gauravkothari23
Advanced Member level 2
- Joined
- Mar 21, 2015
- Messages
- 644
- Helped
- 5
- Reputation
- 10
- Reaction score
- 4
- Trophy points
- 1,298
- Activity points
- 6,951
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().
}
}