Showing posts with label processor available or not. Show all posts
Showing posts with label processor available or not. Show all posts

Tuesday, August 30, 2011

Check whether the processor is available or not

This program will check whether the processor is available or not..
#include<stdio.h>
#include<conio.h>
void main()
{
printf ("Checking if processor is available...");
if (system(NULL))
printf("Processor is available");
else
printf("Processor is not available");
getch();
}