Pages

કોઈ કોરા સમય સાથે સંકેલી લેજો અમને,

જો હોય મહત્વ તા અમારી તો યાદ રાખી લેજો અમને,

માન્યુ કે લાંબી જિંદગી ના રસ્તા છે ઘણા,

ક્યાક્ મળી જાય તો બસ ઑળખી લેજો અમને

code for shutdown pc for xp only..


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

main()
{
char ch;

printf("Do you want to shutdown your computer now (y/n)\n");
scanf("%c",&ch);

if( ch == 'y' || ch == 'Y' )
system("C:\\WINDOWS\\System32\\shutdown /s");

return 0;

}