Heyyy All,
Just a challenge .
A C program with if Else
if(){
/// insert sumthing
print ("in if")
// insert sumting
}
else {
///// insert sumthing
print ("in else");
//// insert sumthing
}
can anyone modify it so that program prints.
if and else both
Answers were Sorted based on User's Feedback
Answer / ravinderrawat1989
Try...
sumthing tricky waiting after this
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / naveen
Program:
void main()
{
int check =1;
if(check==1)
{
printf(" If Block\n");
goto condition1;
}
else
{
condition1:
printf("Else Block");
}
}
Output:
If Block
Else Block
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / asmita negi
OMG.......
Hi Ravinder this looks quite tricky to me.
i am in 3rd yr btech IT.
Pls provide wroking soln for this.
Also can u please please please mail more such trap trick questions to me @
asmita_1991@gmail.com
it would be quite a help.
preparing for exam interview.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the use of fflush() function?
why return type of main is not necessary in linux
List some basic data types in c?
What is #define used for in c?
What is conio h in c?
What are the storage classes in C?
What is function pointer and where we will use it
12345 1234 123 12 1
What is a stream?
Differentiate b/w Modify and Update commands giving example.
what is c language.
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }