My issue
the program is right but its showing “Wrong answer: Failed on a hidden test”
My code
#include <stdio.h>
int main() {
//perform subtraction
int subtraction = 9 - 2;
//perform division
int division = 30 / 5;
//print the results on separate lines
printf("Subtraction result: %d\n", subtraction);
printf("Division result: %d\n", division);
return 0;
}
Learning course: Learn C Programming
Problem Link: https://www.codechef.com/learn/course/rcpit-programming-c/RCPITLPC04/problems/RCPITCP22