Code.GeekInterview.com
  I am new, Sign me up!
 
Code Samples C
 

10 x 10 Mulplication Table


Code ResourceAuthor: chandrikakr  

Difficulty Level: Beginner

Published: 5th Sep 2008   Read: 4780 times  

Filed in: C
Add Comment


 


10*10 Multiplication Table C code.

 


Sample Code
  1. #include<stdio.h>
  2. #include<conio.h>
  3. main()
  4. {
  5. int row,column;
  6. clrscr();
  7. puts("tttMULTIPLICATION TABLE");
  8. puts("nttt********************");
  9. for(row=1;row<=10;row++)
  10. {
  11. printf("nn");
  12. for(column=1;column<=10;column++)
  13. printf("%6d", row*column);
  14. }
  15. getch();
  16. }
  17.  
Copyright GeekInterview.com


Next Article: Delete Spaces from File


 

Latest Code Samples

 

Popular Code Samples

 

Related Code Samples

 

Post Comment


Members Please Login

Name:  Email: (Optional. Used for Notification)

Title:
 
Comment:
Validation Code: <=>  (Enter this code in text box)





Popular Coders

# Coder NameHits
1. kaivalya198914892
2. chandrikakr4781
3. meefriend4ever3546
4. sripri2893
5. deepu082812
6. Jimmy Zorald2562
7. Rajani1629
8. norman1441
9. reliable1094

Active Coders

# Coder NameCodes
1. kaivalya19894
2. sripri1
3. Jimmy Zorald1
4. norman1
5. Rajani1
6. meefriend4ever1
7. chandrikakr1
8. reliable1
9. deepu081

Refined Tags

 

Sponsored Links

 
About Us -  Privacy Policy -  Terms and Conditions -  Contact  

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape