clrscr in c

#include <stdio.h>
#include <stdlib.h>

int main() {
    system("clear"); // Step 1: Clear the console screen

    // Your code goes here

    return 0;
}