what will be the output o the following code?
#includestdio.h
int main()
{
int age;
printf("enter age :");
scanf("%d",&age);
if(age 18){
printf("adult \n");
printf("they can vote \n");
}
else {
printf("not adult \n");
}
return 0;
}

Posted on by