I'm having trouble trying to create the italian, polish, and
netherlands flag in C
Here's my code so far:
#include<stdio.h>
int main(){
int country_choice;
fprintf(stderr, "Enter the country_code of the
chosen flag.(1 for Poland, 2 for Netherlands, 3 for Italy)");
fscanf(stdin, "%d", &country_choice);
switch (country_choice) {
case 1:
printf("Poland Flag\n");
printf("%c%c%c", 255,255,255);
printf("%c%c%c", 220,20,60);
break;
case 2:
printf("Italian Flag\n");
printf("%c%c%c", 0,146,70);
printf("%c%c%c", 225,255,255);
printf("%c%c%c", 206,43,55);
break;
case 3:
printf("Netherlands Flag\n");
printf("%c%c%c", 174,28,40);...