C Programming Tips & Tricks





Español Français 中文 Deutsch Portuguese Japanese nederlands
   
 
Code Snippets
 List All
 Arrays
 Calculators
 Datatypes
 Date & Time
 File Manipulation
 Math Functions
 Multimedia
 Others
 




Launching Windows Explorer - C

Snippets  C  Launching Windows Explorer
Snippet On
Windows Explorer




Code
  
Rate this page :
  [ 0 votes]


#include <stdio.h>
#include <windows.h>
#include <conio.h>
int main(void)
{
printf(<q>Explorer will launch.\n</q>);
system(<q>c:\\windows\\explorer.exe</q>);
return 0;
}

Output:
======
Explorer will launch.




Other Links

web hosting