How to clear console on windows in C

1 Answer

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

int main(void)
{
    puts("c programming");

    system("cls");

    return 0;
}





/*
run



*/

 



answered Jun 1, 2023 by avibootz

Related questions

1 answer 213 views
1 answer 204 views
1 answer 230 views
1 answer 223 views
3 answers 189 views
1 answer 215 views
...