My issue
what is issue here
My code
#include <stdio.h>
int main() {
int Age = 25;
int Vage = 18;
// Update your code below this line
if(Age>=Vage){
printf("Old enough to vote");
}
else{
printf("Not old enough to vote");
}
return 0;
}
Learning course: CSEIPFOIA: Programming and Problem Solving
Problem Link: If & Else Statements Practice Problem in CSEIPFOIA: Programming and Problem Solving - CodeChef