main()
{
int i=1;
while (i<=5)
{
printf("%d",i);
if (i>2)
goto here;
i++;
}
}
fun()
{
here:
printf("PP");
}
Answer Posted / dinakaran gct
The program is error because of the "goto" statement can't
jump from one segment to another segment i.e not support for
long jump.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Explain the use of bit fieild.
Why malloc is faster than calloc?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
What does %p mean c?
how to build a exercise findig min number of e heap with list imlemented?
Explain union. What are its advantages?
What is nested structure?
Why do we use static in c?
What is cohesion in c?
Write a program to swap two numbers without using third variable in c?
What extern c means?
Explain enumerated types.
how logic is used
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
what will be the output for the following main() { printf("hi" "hello"); }