Guess The NumberCode CrazeFeb 20, 20231 min read#include <stdio.h>void main() { int gc=3; int gn,sn; int score=0; printf("\nEnter secret number : "); scanf("%d",&sn); while(gc>0) { printf("\nEnter guess number : "); scanf("%d",&gn); if(gn==sn) { if(gc==3) { score=20; printf("\n---- You score first division ----"); break; } else if(gc==2) { score=10; printf("\n---- You score second division ----"); break; } else if(gc==1) { score=5; printf("\n---- You score third division ----"); break; } } else { if(gn<sn) { printf("\nYour guess is to low !!"); //break; } else if(gn>sn) { printf("\nYour guess is to high !!"); //break; } } gc--; } printf("\nYour score : %d",score);}
Stack Using QueueA stack can be implemented using two queues in C. The basic idea is to use one queue for enqueue operations and another for dequeue...
Queue Using StackA queue can be implemented using two stacks in C. The basic idea is to use one stack for enqueue operations and another for dequeue...
Queue Using Array#include <stdio.h> #include<stdlib.h> #include<math.h> #define size 5 int queue[size]; int front = -1; int rear = -1; void enque(void);...
Comments