Skip to main content

Posts

Showing posts from February, 2020

CODE FOR QUIZ GAME

C C  program for the quiz game #include<stdio.h>     int main() {      int i,a;      char name[200];        //for player name      printf("\t\t\t\t -: ENTER A NUMBER :- \n\n");      printf("\t\t\t \n 1. START THE QUIZ : \t\t\t \n 0. QUIT THE QUIZ : \t\t\n ");      scanf(" %d",&i);  //taking values for choices switch (i) {      case 1:          /* defining conditions for case 1 */      printf(" \n \t\t\t ENTER YOUR NAME   ");      scanf(" %s",&name);      printf("\n\t\t\t PLAYER NAME IS %s",name);      printf("\n\n\t\t\t [ SELECT AND ENTER THE ANSWER NO. ]");      printf("\n\n\t\t Q1.WHAT IS THE CAPITAL OF THE INDIA ?\n");      printf(" \n\n\n\t\t ...