Number Of Open DoorsCode CrazeFeb 12, 20231 min read#include <stdio.h>#include <stdbool.h>#define N 100int main() { bool doors[N] = {false}; int i, j; for (i = 1; i <= N; i++) { for (j = i - 1; j < N; j += i) { doors[j] = !doors[j]; } } printf("Doors that are open:\n"); for (i = 0; i < N; i++) { if (doors[i]) { printf("%d = close \n", i + 1); } } return 0;}
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