Sekar's Fresher Online
Attention Entry Level Computer Engineers: Looking for the best way to measure, improve and promote your career skills? Our Group offers free information, tests, and sample interview questions that will help to improve your information technology skills. At  we are dedicated to helping entry level computer engineers achieve the ultimate dream, a rewarding career in computer engineering - one that will advance your career to its maximum potential.
C SAMPLE PROGRAMS COLLECTION
 
BASIC Programs List
 
1. Write a program in C to display the message " welcome to c program in C me writing" ?
2. Write a program in C to find the area of circle ?
3. write a program in C to find the area of triangle ?
4. Write a program in C to find the area of sphere ?
5. Write a program in C to find the circumference of circle ?
6. Write a program in C to find the area of circle using input value ?
7. Write a program in C to find the area of triangle using input value ?
8. Write a program in C to find the area of sphere using input value ?
9. Write a program in C to find the circumference of circle using input value ?
10. Write a program in C to read and print an given character ?
11. Write a program in C to print the ascii value of given character ?
12. Write a program in C to read and print the given integer ?
13. Write a program in C to read and print the given float ?
14. Write a program in C to read and print the given float with two decimal places ?
15. Write a program in C to read and print the given double ?
16. Write a program in C to read and print the given double with two decimal places ?
17. Write a program in C to Arithmatic operations of two integer numbers ?
18. Write a program in C to Arithmatic operations of two integer numbers .Print these results in separate lines ?
19. Write a program in C to Arithmatic operations of two long numbers .Print these results in separate lines ?
20. Write a program in C to Arithmatic operations of two float numbers .Print these results in separate lines ?
21. Write a program in C to Arithmatic operations of two double numbers .Print these results in separate lines ?
22. Write a program in C to print the upper case letters to lower case ?
23. Write a program in C to print the lower case letters to upper case ?
24. Write a program in C to read float value and print integer equivalent ?
25. Write a program in C to read int value and print float equivalent ?
 
IF Programs List
 
1. write a program in C to check whether the given number even or odd ?
2. write a program in C to check whether the given number positive ,negative or zero ?
3. write a program in C to check whether the given year is leap or not ?
4. Write a program in C to check whether the given character upper, lower , numbr or not ?
5. Write a program in C to change upper to lower ?
6. Write a program in C to change lower to upper ?
7. Write a program in C to print a word form of given number between 0 to 9 ?
8. Write a program in C to print a word form of given number is tens between 1 to 99 ?
9. Write a program in C for relations operations of two given integer numbers ?
10. Write a program in C for relations operations of two given float numbers ?
11. Write a program in C for given mark contain which grade ?
12. Write a program in C to find biggest of two given numbers ?
13. Write a program in C to find smallest of two given numbers ?
14. Write a program in C to find biggest of three given numbers ?
15. Write a program in C to find smallest of three given numbers ?
16. Write a program in C to find biggest of three given numbers using && operator ?
17. Write a program in C to find smallest of three given numbers using && operator ?
18. Write a program in C to display the name of the day in a week .here given input range is 1 to 7. ?
19. Write a program in C to find an biggest of four given numbers ?
20. Write a program in C to find an smallest of four given numbers ?
21. Write a program in C to find a vowel or not of given character ?
 
WHILE Programs List
 
Numbers with while loops
1. Write a program in C to print the numbers 1 to 100 ?
2. Write a program in C to sum of first 100 numbers ?
3. Write a program in C to sum of first N numbers ?
4. Write a program in C to sum of M to N numbers ?
5. Write a program in C to find the average of 1 to 100 ?
6. Write a program in C to sum of first N numbers ?
7. Write a program in C to average of M to N numbers ?
8. Write a program in C to display the even or odd numbers between 1 to 100 ?
9. Write a program in C to display the even or odd numbers of first N numbers ?
10. Write a program in C to display the even or odd numbers between to ranges ?
11. Write a program in C to display the leap years between 1000 to 2000 ?
12. Write a program in C to display the leap years of given range ?
13. Write a program in C to print the numbers between two ranges ?
14. Write a program in C to print the number until -1000 is given a input ?
15. Write a program in C to print the positive , negative and zero until -1000 is given a input ?
16. Write a program in C to count the positive , negative numbers and zero until -1000 is given a input ?
17. Write a program in C to sum of the positive , negative numbers until -1000 is given a input ?
18. Write a program in C to mean of the positive , negative numbers until -1000 is given a input ?
19. Write a program in C to factorial of given number until -1000 is given a input ?
Comparsion of numbers with while loops
20. Write a program in C to find biggest of two numbers using ternary operator ?
21. Write a program in C to find smallest of two numbers using ternary operator ?
22. Write a program in C to find biggest of three numbers using ternary operator ?
23. Write a program in C to find smallest of three numbers using ternary operator ?
24. Write a program in C to find biggest of ten numbers ?
25. Write a program in C to find smallest of ten numbers ?
26. Write a program in C to find biggest of N numbers ?
27. Write a program in C to find smallest of N numbers using ternary operator ?
28. Write a program in C to read and display 10 numbers using array ?
29. Write a program in C to read and display of N numbers using array ?
30. Write a program in C to find mean of ten numbers using array ?
31. Write a program in C to find mean of N numbers using array ?
32. Write a program in C to find the biggest of 10 numbers using array ?
33. Write a program in C to find the smallest of 10 numbers using array ?
34. Write a program in C to find the position of biggest number in the array ?
35. Write a program in C to find the position of smallest number in the array ?
36. Write a program in C to find the positions of biggest&& smallest number in the array ?
37. Write a program in C to interchange the biggest&& smallest number in the array ?
38. Write a program in C to find the second biggest of N numbers using array ?
39. Write a program in C to find the second smallest of N numbers using array ?
40. Write a program in C to find the second biggest and smallest of N numbers using array ?
41. Write a program in C to find the positions of second biggest and smallest of N numbers using array ?
42. Write a program in C to interchange the second biggest and smallest of N numbers using array ?
Matrix with while loops
43. Write a program in C to read and write 3x3 matrix ?
44. Write a program in C to read and display the transpose of 3x3 matrix ?
45. Write a program in C to find the sum of matrix ?
46. Write a program in C to find the product of two matrixes ?
47. Write a program in C to read and display MxN matrix ?
48. Write a program in C to read and display the transpose of MxN matrix ?
49. Write a program in C to sum of two MxN matrix ?
50. Write a program in C to poduct of two MxN matrix ?
Text Processing with while loops
51. Write a program in C to read the characters and display until $ is given ?
52. Write a program in C to read the characters and display ascii value until $ is given ?
53. Write a program in C to classify the character is upper or lower case until $ is given ?
54. Write a program in C to count the upper , lower , number and special characters until $ is given ?
55. Write a program in C to read and print a word ?
56. Write a program in C to read and print a sentence until . is given ?
57. Write a program in C to read a line until ?\n? is given ?
58. Write a program in C to read a text until ?$? is given ?
59. Write a program in C to count the number of characters in the input text ?
60. Write a program in C to count the number of words in the input text ?
61. Write a program in C to count the number of characters ,words and lines ?
62. Write a program in C to copy one array to another array ?
63. Write a program in C to copy the first N characters ?
64. Write a program in C to copy the N characters form M position onwards ?
65. Write a program in C to copy the last N characters ?
66. Write a program in C to copy upper to lower case ?
67. Write a program in C to copy lower to upper case ?
68. Write a program in C to replace semicolon instead of comma ?
69. Write a program in C to replace by comma instead of semicolon; ?
70. Write a program in C to delete comma from the given string ?
71. Write a program in C to copy the reverse of the given string ?
72. Write a program in C to merge to arrays ?
73. Write a program in C to fortran to pascal statement ?
74. Write a program in C to pascal statement to fortran statement ?
75. Write a program in C to count the lines in the text ?
76. Write a program in C to print the first position of every line in the given text ?
77. Write a program in C to store the first position of every line in the given text in array ?
78. Write a program in C to print the M th line ?
79. Write a program in C to print the M th to N th line ?
Pattern Matching with while loops
80. Write a program in C to find out given pattern exist or not ?
81. Write a program in C to count the no of times occure in given pattern ?
82. Write a program in C to delete the given pattern ?
83. Write a program in C to replace the given pattern ?
 
FOR Programs List
 
Numbers with for loops
1. Write a program in C to print the numbers 1 to 100 ?
2. Write a program in C to sum of first 100 numbers ?
3. Write a program in C to sum of first N numbers ?
4. Write a program in C to sum of M to N numbers ?
5. Write a program in C to find the average of 1 to 100 ?
6. Write a program in C to sum of first N numbers ?
7. Write a program in C to average of M to N numbers ?
8. Write a program in C to display the even or odd numbers between 1 to 100 ?
9. Write a program in C to display the even or odd numbers of first N numbers ?
10. Write a program in C to display the even or odd numbers between to ranges ?
11. Write a program in C to display the leap years between 1000 to 2000 ?
12. Write a program in C to display the leap years of given range ?
13. Write a program in C to print the numbers between two ranges ?
14. Write a program in C to print the number until -1000 is given a input ?
15. Write a program in C to print the positive , negative and zero until -1000 is given a input ?
16. Write a program in C to count the positive , negative numbers and zero until -1000 is given a input ?
17. Write a program in C to sum of the positive , negative numbers until -1000 is given a input ?
18. Write a program in C to mean of the positive , negative numbers until -1000 is given a input ?
19. Write a program in C to factorial of given number until -1000 is given a input ?
Comparsion of numbers with for loops
20. Write a program in C to find biggest of ten numbers ?
21. Write a program in C to find smallest of ten numbers ?
22. Write a program in C to find biggest of N numbers ?
23. Write a program in C to find smallest of N numbers ?
24. Write a program in C to read and display 10 numbers using array ?
25. Write a program in C to read and display of N numbers using array ?
26. Write a program in C to find mean of ten numbers using array ?
27. Write a program in C to find mean of N numbers using array ?
28. Write a program in C to find the biggest of 10 numbers using array ?
29. Write a program in C to find the smallest of 10 numbers using array ?
30. Write a program in C to find the position of biggest number in the array ?
31. Write a program in C to find the position of smallest number in the array ?
32. Write a program in C to find the positions of biggest&& smallest number in the array ?
33. Write a program in C to interchange the biggest&& smallest number in the array ?
34. Write a program in C to find the second biggest of N numbers using array ?
35. Write a program in C to find the second smallest of N numbers using array ?
36. Write a program in C to find the second biggest and smallest of N numbers using array ?
37. Write a program in C to find the positions of second biggest and smallest of N numbers using array ?
38. Write a program in C to interchange the second biggest and smallest of N numbers using array ?
Matrix with for loops
39. Write a program in C to read and write 3x3 matrix ?
40. Write a program in C to read and display the transpose of 3x3 matrix ?
41. Write a program in C to find the sum of matrix ?
42. Write a program in C to find the product of two matrixes ?
43. Write a program in C to read and display MxN matrix ?
44. Write a program in C to read and display the transpose of MxN matrix ?
45. Write a program in C to sum of two MxN matrix ?
46. Write a program in C to poduct of two MxN matrix ?
Text Processing with for loops
47. Write a program in C to read the characters and display until $ is given ?
48. Write a program in C to read the characters and display ascii value until $ is given ?
49. Write a program in C to classify the character is upper or lower case until $ is given ?
50. Write a program in C to count the upper , lower , number and special characters until $ is given ?
51. Write a program in C to read and print a word ?
52. Write a program in C to read and print a sentence until . is given ?
53. Write a program in C to read a line until ?\n? is given ?
54. Write a program in C to read a text until ?$? is given ?
55. Write a program in C to count the number of characters in the input text ?
56. Write a program in C to count the number of words in the input text ?
57. Write a program in C to count the number of characters ,words and lines ?
58. Write a program in C to copy one array to another array ?
59. Write a program in C to copy the first N characters ?
60. Write a program in C to copy the N characters form M position onwards ?
61. Write a program in C to copy the last N characters ?
62. Write a program in C to copy upper to lower case ?
63. Write a program in C to copy lower to upper case ?
64. Write a program in C to replace by comma instead of semicolon; /* program in C no : 197 */ ?
65. Write a program in C to delete comma from the given string ?
66. Write a program in C to copy the reverse of the given string ?
67. Write a program in C to merge to arrays ?
68. Write a program in C to fortran to pascal statement ?
69. Write a program in C to pascal to fortran statement ?
70. Write a program in C to count the lines in the text ?
71. Write a program in C to print the first position of every line in the given text ?
72. Write a program in C to store the first position of every line in the given text in array ?
73. Write a program in C to print the M th line ?
74. Write a program in C to print the M th to N th line ?
Pattern Matching with for loops
75. Write a program in C to find out given pattern exist or not ?
76. Write a program in C to count the no of times occure in given pattern ?
77. Write a program in C to delete the given pattern ?
78. Write a program in C to replace the given pattern ?
 
STRUCTURES Programs List
 
1. Write a program in C to read and display the bio-data using structure ?
2. Write a program in C to area of circle using structure ?
3. Write a program in C to find the biggest of three numbes using structure ?
4. Write a program in C to find the smallest of three numbes using structure ?
5. Write a program in C to read and display the bio-data using structure ?
6. Write a program in C to read and display the bio-data with date of birth using structure ?
7. Write a program in C to read and display the bio-data of 10 students using structure ?
8. Write a program in C to read and display the numbers using typedef ?
9. Write a program in C to read and display the bio-data using typedef ?
10. Write a program in C to read and display the bio-data using typedef (declaration structure) ?
11. Write a program in C to read and display the complete bio-data using typedef (declaration structure) ?
12. Write a program in C to read and display the complex number ?
13. Write a program in C to read and display the two complex number ?
14. Write a program in C to read and display the sum of two complex numbers ?
15. Write a program in C to read and display the difference of two complex numbers ?
16. Write a program in C to read and display a point of curve ?
17. Write a program in C to distance between two points ?
 
FILES Programs List
 
1. Write a program in C to read and store the bio-data into file ?
2. Write a program in C to read the bio from file and print to screen ?
3. Write a program in C to read the biodata until $ is given for name ?
4. Write a program in C to read the bio from file and print to screen ?
5. Write a program in C to read a character one by one until $ is given ?
6. Write a program in C to display the text form file ?
Command Line Arguments with Files
7. Write a program in C to read the biodata until $ is given for name using command line arguments ?
8. Write a program in C to read the biodata from file using command line arguments ?
9. Write a program in C to read a character until $ is given using command line arguments ?
10. Write a program in C to display the text from file using command line arguments(cat command in unix) ?
11. Write a program in C to display the text from given files using command line arguments(cat all files command in unix) ?
12. Write a program in C to copy one file to another file using command line arguments(cp command in unix) ?
13. Write a program in C to merge two files ?
14. Write a program in C to convert upper case letters into lower case ?
15. Write a program in C to encraph the given file ?
16. Write a program in C to decraph the given file ?
17. Write a program in C to copy the contents of array into file. ?
18. Write a program in C to copy the file contents into array . ?
19. Write a program in C to display line by line of the file contents ?
20. Write a program in C to display line by line of the file contents including line number. ?
21. Write a program in C to display page by page of the file contents including line number. ?
22. Write a program in C to display line by line and count the no of upper and lower case letters and numbers . ?
23. Write a program in C to count the no of upper and lower case letters and numbers in file.. ?
24. Write a program in C to count the no of lines and words and characters in file.. ?
25. Write a program in C to count the given pattern ?
26. Write a program in C to count the given pattern using command line arguments. ?
27. Write a program in C to print the particular line when pattern is occured using command line arguments.(grep command in unix: ) ?
28. Write a program in C to print the particular line with line number when pattern is occured using command line arguments.(grep command in unix: ) ?
29. Write a program in C to print the particular line with line number when pattern is occured using command line arguments in all files(Grep command in unix: ) ?
30. Write a program in C to print the particular line with line number when pattern dost not occur using command line arguments in all files ?
31. Write a program in C to read and store the bio-data into file ?
Union with Files
32. Write a program in C to read the bio-data from file and print it to the screen ?
33. Write a program in C to read the bio-datae and print it to the file until $ is given for name. ?
34. Write a program in C to read the bio-datae from file and print it to the screen until EOF is occur. ?
35. Write a program in C to read the bio-datae from file and calculate hra and da ?
36. Write a program in C to display the Nth recored ?
Randon Access Files
37. Write a program in C to display the payslip of Nth recored ?
38. Write a program in C to edit the nth record ?
39. Write a program in C to read a biodata until record no is zero ?
Indexed Sequential Files
40. Write a program in C to display the biodata for givenl record no ?
41. Write a program in C to display the pay slip for given record no. ?
42. Write a program in C to edit the n th record ?
 
FUNCTIONS Programs List
 
Numbers with Functions
1. Write a program in C to sum of two integer numbers. ?
2. Write a program in C to find the biggest of two integer numbers. ?
3. Write a program in C to find the smallest of two integer numbers. ?
4. Write a program in C to find the area of circle. ?
5. Write a program in C to find the volume of sphere. ?
6. Write a program in C to find out the given number is even or odd. ?
7. Write a program in C to find out the given year is leap year or not. ?
8. Write a program in C to print the single digit number into words. ?
9. Write a program in C to print 11-19 range to words. ?
10. Write a program in C to print the tens (10,20,..90) into words ?
11. Write a program in C to print the limit 0-99 into words. ?
12. Write a program in C to print the limit 0-999 into words ?
13. Write a program in C to read and print the ten numbers ?
14. Write a program in C to read and print the ten numbers using separate functions. ?
15. Write a program in C to find out the biggest of ten numbers. ?
16. Write a program in C to find out the smallest of ten numbers. ?
17. Write a program in C to find out the biggest and smallest of ten numbers ?
18. Write a program in C to find out the index of biggest of ten numbers in array ?
19. Write a program in C to find out the index of smallest of ten numbers in array ?
20. Write a program in C to interchange the biggest and smallest of ten numbers. ?
21. Write a program in C to merge two arrays (array size is 10). ?
22. Write a program in C for ascending order of ten numbers ?
23. Write a program in C for descending order of ten numbers ?
24. Write a program in C to read and display of N numbers ?
25. Write a program in C to read and print the numbers which are odd and even ?
26. Write a program in C to find the average of N numbers ?
27. Write a program in C to read and print the reverse order ?
Matrix with Functions
28. Write a program in C to read and display a 3 x 3 Matrix. ?
29. Write a program in C to transpose the 3 x 3 Matrix ?
30. Write a program in C to print the sum of two 3 x 3 Matrix. ?
31. Write a program in C to print the product of two 3 x 3 Matrix. ?
32. Write a program in C to read and display a N x N Matrix. ?
33. Write a program in C to transpose the N x N Matrix ?
34. Write a program in C to print the sum of two N x N Matrix. ?
35. Write a program in C to print the product of two N x N Matrix ?
36. Write a program in C to read and display a M x N Matrix ?
37. Write a program in C to transpose of M x N Matrix. ?
38. Write a program in C to print the sum of two M x N Matrix ?
39. Write a program in C to print the product of two M x N Matrix ?
Text Processing with Functions
40. Write a program in C to read and print the text ?
41. Write a program in C to count the upper, lower, number and special character of given text. ?
42. Write a program in C to count the no. of lines, words & characters of given text ?
43. Write a program in C to copy one array to another array ?
44. Write a program in C to merge the two arrays ?
45. Write a program in C to copy the left N Characters ?
46. Write a program in C to copy the N Characters from M th position onwards ?
47. Write a program in C to find the length of given text or array ?
48. Write a program in C to copy the last N characters ?
49. Write a program in C to print the reverse of given array ?
50. Write a program in C to merge three arrays ?
51. Write a program in C to convert upper case to lower case letters ?
52. Write a program in C to convert lower case to upper case letters ?
53. Write a program in C to replace comma to semicolon ?
54. Write a program in C to replace semicolon to comma ?
55. Write a program in C to delete the comma in given string ?
56. Write a program in C to store the first position of every new line ?
57. Write a program in C to print the Nth line ?
58. Write a program in C to print the Mth line to Nth line ?
59. Write a program in C to count the no of patterns exist on given string ?
60. Write a program in C to delete the pattern ?
61. Write a program in C to replace the given pattern ?
Files with functions
62. Write a program in C to read text and store into file ?
63. Write a program in C to read text from file and print to screen ?
64. Write a program in C to cat all files. (cat command in unix) ?
65. Write a program in C to copy one file into another file (copy command) ?
66. Write a program in C to merge two files ?
67. Write a program in C to print the entire file using array ?
68. Write a program in C to print the entire file along the line number ?
69. Write a program in C to print the entire file on page by page along the line number ?
70. Write a program in C to count the no of upper, lower and special charactes in the file ?
71. Write a program in C to count the no of lines, words and characters ?
72. Write a program in C to count the given pattern into the file ?
73. Write a program in C to grep command in linux. (Display the patten is occur or not). ?
74. Write a program in C to grep command in linux. (Display the line number where is pattern is occurred ). ?
75. Write a program in C to grep all files command in linux. (Display the line number where is pattern is occurred ). ?
 
UNIX Programs List
 
UNIX System Calls
1. Write a program in C to read the text and store into file using unix system calls. ?
2. Write a program in C to read the text from file and print to screen using unix system calls. ?
3. Write a program in C to read the text from N number of files and print to screen using unix system calls (cat command in unix). ?
4. Write a program in C to copy one file to another files using unix system calls (copy command in unix). ?
5. Write a program in C to merge two files. ?
6. Write a program in C to copy entire file into single char array. ?
7. Write a program in C to display line by line of given file ?
8. Write a program in C to display line by line with line number of given file. ?
9. Write a program in C to display page by page of given file ?
10. Write a program in C to count the no of characters of the given file. ?
11. Write a program in C to count the no of words of the given file. ?
12. Write a program in C to count the no of lines of the given file. ?
13. Write a program in C to count the no of words, chars and lines of the given file. ?
14. Write a program in C to display the line if given pattern is exist (Grep command in unix). ?
15. Write a program in C to print the line if given pattern exist of the all file (Grep all files command in unix). ?
Block I/O Operations
16. Write a program in C to print the line with line number if given pattern exist of the all file (Grep all files with line number command in unix). ?
17. Write a program in C to print the line with line number if given does not pattern exist of the all file . ?
18. Write a program in C to copy command using IO Buffer ( CP command in unix) . ?
19. Write a program in C to merge two files using IO Buffer ?
20. Write a program in C to block of data into the file using Union, IO Buffer ?
21. Write a program in C to display the biodata until end of file using Union, IO Buffer concepts. ?
22. Write a program in C to display the Nth Record using Union, IO Buffer concepts. ?
23. Write a program in C to display the edit the Nth Record using Union, IO Buffer concepts. ?
Unix OS Commands
24. Write a program in C for ls command. ?
25. Write a program in C for ln command ?
26. Write a program in C for rm command ?
27. Write a program in C to remove all the linked files ?
28. Write a program in C to remove all the linked files ?
29. Write a program in C on mv command ?
30. Write a program in C for encrypt command ?
31. Write a program in C for decrypt command ?
32. Write a program in C to check whether the given file is available of not in the directory ?
33. Write a program in C for VI Command ?
34. Write a program in C to check the accessing permission of given file ?
35. Write a program in C to deletion of given file ?
 
FUNCTION_POINTERS Programs List
 
DYNAMIC Programs List
 
Numbers with dynamic memory allocation
1. Write a program in C to read and display integer, float, char, double number ?
2. Write a program in C to sum of two integer numbers ?
3. Write a program in C to biggest of two integer numbers ?
4. Write a program in C to read and display 10 integer numbers ?
5. Write a program in C to read and display N integer numbers ?
Text Processing dynamic memory allocation
6. Write a program in C to read and display text using dynamic allocation ?
7. Write a program in C to read N characters ?
8. Write a program in C to copy one array to another array ?
9. Write a program in C to merge two arrays ?
Structures with dynamic memory allocation
10. Write a program in C to read and display biodata using structures ?
11. Write a program in C to find the area of circle using structures ?
12. Write a program in C to find the biggest of three numbers using structures ?
Functions with dynamic memory allocation
13. Write a program in C to read and display text using functions ?
14. Write a program in C to read and display integer array using functions ?
15. Write a program in C to read and display biodata using functions ?
Matrix with dynamic memory allocation
16. Write a program in C to read and display a 3 x 3 Matrix ?
17. Write a program in C to transpose the 3 x 3 Matrix ?
18. Write a program in C to print the sum of two 3 x 3 Matrix. ?
19. Write a program in C to print the product of two 3 x 3 Matrix ?
20. Write a program in C to read and display a N x N Matrix ?
21. Write a program in C to transpose the N x N Matrix ?
22. Write a program in C to print the sum of two N x N Matrix ?
23. Write a program in C to print the product of two N x N Matrix ?
24. Write a program in C to read and display a M x N Matrix ?
25. Write a program in C to transpose of M x N Matrix ?
26. Write a program in C to print the sum of two M x N Matrix ?
27. Write a program in C to print the sum of two M x N Matrix ?
 
 

Links :
Blog Roll :
   



Hosted by www.Geocities.ws

1