C Answers

Questions answered by Experts: 1 680

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search

#include<stdio.h>
int main()
{
int x=15;
printf("\n %d %d %d",x!=15,x=20,x<30);
return 0;
}

In this program x is already assigned the value 15. what will be the output and explain sir.
#include<stdio.h>
int main()
{
int x=15;
printf("\n %d %d %d",x!=15,x=20,x<30);
return 0;
}

In this program x is already assigned the value 15. what will be the output and explain sir.
#include<stdio.h>
int main()
{
int x=15;
printf("\n %d %d %d",x!=15,x=20,x<30);
return 0;
}

In this program x is already assigned the value 15. what will be the output and explain sir.
#include<stdio.h>
int main()
{
int k=35;
printf("\n %d %d %d",k==35,k=50,k>40);
return 0;
}

In this program k is already assigned the value 35.what will be the output sir. Please explain it.
#include<stdio.h>
int main()
{
int x=3,y=5;
if(x==3)
printf("\n %",x);
else;
printf("\n %d",y);
return 0;
}

Actually there will be no semicolon at if or else statement. In this program semicolon is there at else statement. Can you please provide the output and explanation?
#include<stdio.h>
int main()
{
int x=10,y=20;
if(x==y);
printf("\n %d %d",x,y);
return 0;
}

I want the output and explanation.
Alice and Bob are playing a game called "Stone Game". Stone game is a two-player game. Let N be the total number of stones. In each turn, a player can remove 1, 2 or 3 stones. The player who picks the last stone, loses. They follow the "Ladies First" norm. Hence Alice is always the one to make the first move. Your task is to find out whether Alice can win, if both play the game optimally.
Input Format:

First line starts with T, which is the number of test cases. Each test case will contain N number of stones.

Output Format:

Print "Yes" in the case Alice can win, else prints "No".

Constraints:
1<=T<=10

1<=N<=10000


Sample Input and Output

SNo. Input Output
1
2
1
3


No
Yes
#include<stdio.h>
int main()
{
int x=15;
printf("\n %d %d %d",x!=15,x=20,x<30);
return 0;
}
please explain the logic behind this program and give the output sir.
#include<stdio.h>
int main()
{
int x=15;
printf("\n %d %d %d",x!=15,x=20,x<30);
return 0;
}
please explain the logic behind this program and give the output sir.
#include<stdio.h>
int main()
{
int k=35;
printf("\n %d %d %d",k==35,k=50,k>40);
return 0;
}
please explain the logic behind this program very clearly sir and give the output
LATEST TUTORIALS
APPROVED BY CLIENTS