Make System Calls with system() function - C Function

C examples for Function:Utility Function

Introduction

The following code uses the system() function to call the UNIX clear command.

Demo Code

#include <stdio.h> 
int main()/* w w  w .ja va 2s . c o m*/
{ 
   //system("clear"); 
   printf("done");
}

Related Tutorials