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(); }
No comments:
Post a Comment
Feel free to comment......