Mini Project Challenge

Medium Algorithmic Challenges
Solve in Playground →

Problem Statement

Write a C program that simulates a student management record CLI utility supporting record insertion lookup and display.

Input Format

Number of commands Q followed by query commands ('I roll name' or 'D').

Output Format

Print query confirmations or stored student records.

Constraints

1 <= Q <= 50

Sample Input

3
I 101 John
I 102 Alice
D

Sample Output

Inserted: 101
Inserted: 102
101: John
102: Alice

Explanation

Simulates complete mini project record handling logic.

Starter Code

#include <stdio.h>
#include <string.h>

struct Record {
    int roll;
    char name[51];
};

int main() {
    int q;
    if (scanf("%d", &q) == 1) {
        // Write your code here
    }
    return 0;
}

Limits

  • Time Limit: 1s
  • Memory Limit: 256MB

Embedded C Programming

Updated: March 15, 2026
Intermediate

Embedded systems rely on efficient low-level programming to interact directly with hardware. In this course, you will learn how to write practical Embedded C programs used in real microcontroller-based systems. Rather than focusing only on theory, this course follows a practice-driven approach. Each lesson includes hands-on coding exercises that simulate real firmware development tasks used