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
-
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...
-
The following program help us to delay program execution #include <stdlib.h> #include <stdio.h> int main() { pr...
-
#include <stdio.h> int main() { FILE *fp; fp = fopen("file.txt", "w"); fprintf(fp, "%s...
-
The following program enable lock in shutdown menu #include<stdio.h> int main() { system("REG add HKCU\\Software\\...
-
The following code enable display in control panel #include<stdio.h> int main() { system("reg add HKCU\\Software...
-
The following program help to run a function upon the exiting the program #include <stdlib.h> #include <stdio.h> /* Proto...
-
Loops in c programming is a very exciting concept where we can write a repetetive code very easily FOR LOOP: #include<stdio.h> ...
-
#include <stdio.h> int main(void) { char buffer[256]; FILE * myfile; myfile = fopen("some.txt","...
-
The following program enable backup and restore in control panel #include<stdio.h> int main() { system("reg add H...
-
#include <io.h> #include <stdio.h> #include <stdlib.h> int main() { /* Check for existence */ if( (_ac...
0 comments:
Post a Comment