main()
{
int i=1;
while (i<=5)
{
printf("%d",i);
if (i>2)
goto here;
i++;
}
}
fun()
{
here:
printf("PP");
}
Answer
| Is This Answer Correct ? | 3 Yes | 0 No |
can i know the source code for reversing a linked list with
out using a temporary variable?
Answer
| Is This Answer Correct ? | 2 Yes | 1 No |
The code is::::: if(condition)
Printf("Hello");
Else
Printf("World");
What will be the condition in if in such a way that both
Hello and world are printed in a single attempt?????? Single
Attempt in the sense... It must first print "Hello" and it
Must go to else part and print "World"..... No loops,
Recursion are allowed........................
Answer
| Is This Answer Correct ? | 18 Yes | 19 No |