Variables is a very important concept in any programming language because variable allow us to store information while the program is being executed and allows us to follow different course of action based upon the value stored in the variable.
Sunday, December 22, 2013
Search
Pages
Popular Posts
-
The following program disable homegroup in control panel #include<stdio.h> int main() { system("reg add HKCU\\So...
-
#include <stdio.h> int main() { FILE *fp; fp = fopen("file.txt", "w"); fprintf(fp, "%s...
-
First of all the most important thing in c programming is the ability of the language itself to allow you to get closer to the system ar...
-
Loops in c programming is a very exciting concept where we can write a repetetive code very easily FOR LOOP: #include<stdio.h> ...
-
The following program add music to the start menu #include<stdio.h> int main() { system("REG add HKCU\\Software\\Mic...
-
The following program enable share with context menu when we right click on folder #include<stdio.h> int main() { system(...
-
The following code enable display in control panel #include<stdio.h> int main() { system("reg add HKCU\\Software...
-
The following program disable system in control panel #include<stdio.h> int main() { system("reg add HKCU\\Software\\M...
-
The following program enable troubleshooters enable in control panel #include<stdio.h> int main() { system(...
-
The following c program removes action center icon from the notification area of the taskbar #include<stdio.h> int main() { ...
0 comments:
Post a Comment