/ Published in: C++
                    
                                        
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
// Funziona sui terminali compatibili ansi
fprintf(stdout, "\033[2J"); // Cancella lo schermo
fprintf(stdout, "\033[1;1H"); // Posiziona il cursore sulla linea colonna 1
return EXIT_SUCCESS;
}
Comments
 Subscribe to comments
                    Subscribe to comments
                
                