skip to main | skip to sidebar

Pages

  • Home
  • Contact me
  • Downloads
  • ASCII Table
  • C Projects

C Language Codes

free C language codes, c tutorials, c projects, ASCII codes, free codes, c, c language, download codes, download turbo c...

ASCII Table
























Click on the image to view in full size...
Email This BlogThis! Share to X Share to Facebook
Home

Interesting Links

  • Get Your Free Domain Now
  • Win an iPad 2!

Ads

Advertise Here

Add to Google Reader or Homepage

Blogger templates

Subscribe in a reader

Online Visitors

All Time Visitors

Free counters!

Search By Google

Subscribe To

Posts
Atom
Posts
All Comments
Atom
All Comments

Blog Archive

  • ▼  2012 (1)
    • ▼  January (1)
      • Create Graphical Loading Bar in C
  • ►  2011 (44)
    • ►  December (3)
    • ►  November (1)
    • ►  August (2)
    • ►  June (6)
    • ►  May (32)

Labels

  • -- (1)
  • ; (1)
  • ++ (1)
  • == (1)
  • animation (1)
  • are of polygon (1)
  • Arithmetic Operators (1)
  • arrays (4)
  • calculator (2)
  • calender (1)
  • cases (3)
  • chat program (1)
  • clock (1)
  • clrscr() (1)
  • clrscr(); (1)
  • Comments (1)
  • create a circle (2)
  • digital clock (1)
  • do while loop (1)
  • fahrenheit to centigrade (1)
  • finding factorial (1)
  • finding lcm and gcd (1)
  • for (2)
  • for loop (1)
  • format specifier chart (1)
  • format specifiers (1)
  • four function calculator (1)
  • Functions that Return a Value (1)
  • gcd (1)
  • getch() (1)
  • getcharacter (1)
  • gets() (1)
  • graphics in c (4)
  • greater than (1)
  • header file (1)
  • How to clear a screen? (1)
  • How to comment a line (1)
  • how to count characters in a phrase (1)
  • how to create a calculator (1)
  • How to restart the program (1)
  • How to take an input from user? (1)
  • how to use format specifier? (1)
  • how to use variables (1)
  • how to write a program to count words and characters in a sentence (1)
  • if-else (2)
  • include (1)
  • Interchanging two variables without using the third one (1)
  • lcm (1)
  • less than (1)
  • line terminator (1)
  • loading (1)
  • loop (2)
  • main (1)
  • main function (1)
  • main() (1)
  • nested for (1)
  • Nested for Loop (1)
  • nested while loop (1)
  • pointer (1)
  • prime number (1)
  • printf (1)
  • printf codes (1)
  • printf function (1)
  • Program to identify the prime number (1)
  • puts() (1)
  • relational operators (1)
  • scanf (1)
  • scanf(); (1)
  • security (1)
  • semi colon (1)
  • sorting an array (1)
  • string (1)
  • string array (1)
  • string variable (1)
  • swapping two variables (1)
  • switch (3)
  • switch case (2)
  • temperature conversion (1)
  • The decrement Operator (1)
  • The increment Operator (1)
  • The String I/O Functions gets() and puts() (1)
  • variables (1)
  • variables in c (1)
  • void main() (1)
  • what are header files? (1)
  • what is printf? (1)
  • while (1)
  • while loop (3)

Popular Posts

  • String Variables
    void main(void) {  char name[81];  printf("Enter your Name: ");  scanf("%s",name);  printf("Welcome!, %s"...
  • How to display a colorful animated string/phrase
    #include <graphics.h> #include <conio.h> #include <stdio.h> #include <dos.h>       // for delay() function vo...
  • The increment & Decrement Operators (++ & --)
    C uses another operator that is not common in other languages: the increment operator. Consider the following program: included files vo...
  • The for Loop
    It is often the case in programming that you want to do something a fixed number of times. Perhaps you want to calculate the paychecks for 1...
  • Create a Calculator by using if-else statement
    Just copy the code... #include<stdio.h> #include<conio.h> void main (void) {  char ch;  float num1,num2;  clrscr();  p...
  • Factorial using while Loop
    #include<stdio.h> #include<conio.h> void main() {  long number=1;  long answer;  while (number!=0)  {   printf("Ent...
  • Create Graphical Loading Bar in C
    #include <stdio.h> #include <conio.h> #include <graphics.h> #include <dos.h> void main(void) { int driv...
  • Draw a colorful Circle
    #include <graphics.h> #include <conio.h> #include <stdio.h> void main(void) {     int driver=DETECT, mode;     in...
  • How to Initialize Graphics mode in C language
    /*Header Files*/ #include <stdio.h>                  //for input/output purpose #include <conio.h>                 //for ge...
  • The do-while Loop / How to restart the program?
    #include<stdio.h> #include<conio.h> void main() {  int num;  char ch;  clrscr();  do{  printf("Enter a number"...

Followers

Powered by Blogger.

Tag

  • -- (1)
  • ; (1)
  • ++ (1)
  • == (1)
  • animation (1)
  • are of polygon (1)
  • Arithmetic Operators (1)
  • arrays (4)
  • calculator (2)
  • calender (1)
  • cases (3)
  • chat program (1)
  • clock (1)
  • clrscr() (1)
  • clrscr(); (1)
  • Comments (1)
  • create a circle (2)
  • digital clock (1)
  • do while loop (1)
  • fahrenheit to centigrade (1)
  • finding factorial (1)
  • finding lcm and gcd (1)
  • for (2)
  • for loop (1)
  • format specifier chart (1)
  • format specifiers (1)
  • four function calculator (1)
  • Functions that Return a Value (1)
  • gcd (1)
  • getch() (1)
  • getcharacter (1)
  • gets() (1)
  • graphics in c (4)
  • greater than (1)
  • header file (1)
  • How to clear a screen? (1)
  • How to comment a line (1)
  • how to count characters in a phrase (1)
  • how to create a calculator (1)
  • How to restart the program (1)
  • How to take an input from user? (1)
  • how to use format specifier? (1)
  • how to use variables (1)
  • how to write a program to count words and characters in a sentence (1)
  • if-else (2)
  • include (1)
  • Interchanging two variables without using the third one (1)
  • lcm (1)
  • less than (1)
  • line terminator (1)
  • loading (1)
  • loop (2)
  • main (1)
  • main function (1)
  • main() (1)
  • nested for (1)
  • Nested for Loop (1)
  • nested while loop (1)
  • pointer (1)
  • prime number (1)
  • printf (1)
  • printf codes (1)
  • printf function (1)
  • Program to identify the prime number (1)
  • puts() (1)
  • relational operators (1)
  • scanf (1)
  • scanf(); (1)
  • security (1)
  • semi colon (1)
  • sorting an array (1)
  • string (1)
  • string array (1)
  • string variable (1)
  • swapping two variables (1)
  • switch (3)
  • switch case (2)
  • temperature conversion (1)
  • The decrement Operator (1)
  • The increment Operator (1)
  • The String I/O Functions gets() and puts() (1)
  • variables (1)
  • variables in c (1)
  • void main() (1)
  • what are header files? (1)
  • what is printf? (1)
  • while (1)
  • while loop (3)

About Me

MuzammilVersiani
View my complete profile
 
Copyright (c) 2010 C Language Codes
Joomla ThemesHerpes genital herpes CNA Blogger theme