Recent content by andrej192

  1. A

    Need help in c programming

    #include <stdio.h> #include <stdlib.h> int main() {//online test, 3 questions char capital; printf("Question number 1: \n"); printf("What is the capital of Spain? \n"); scanf(" %s", &capital); if(capital == "Madrid"){ printf("Correct, move on to question 2 \n")...