C examples for Function:Utility Function
The following code uses the system() function to call the UNIX clear command.
#include <stdio.h> int main()/* w w w .ja va 2s . c o m*/ { //system("clear"); printf("done"); }