![]() |
#2
yuma2021-02-17 12:27
|
# include <stdio.h>
int main()
{
int a;
a=2
if(3==a);
{
printf("a is 3");
}
else
{
printf("a is %d",a);
}
return 0;