11. There are some mistakes in the code, please fix them by using your compiler, and post your code here.
(can be answered 2 times)
#include <stdio.h>
int main(int argc, char *argv[]) {
int country_code;
scanf ("%d", &country_code);
if (country_code==886){
printf("Taiwan");
}
else (country_code==976){
printf("Mongolia");
}
else if (country_code==62){
printf("Indonesia");
}
else if (country_code==66){
printf("Thailand");
}
else
printf("No");
return 0