clear screen in c

#include <stdio.h>  // Include the standard input/output library
#include <stdlib.h> // Include the standard library for the system function

int main() {
    system("clear"); // Use the system function to execute the clear command
    return 0;        // Return 0 to indicate successful execution
}