Saturday, September 10, 2011
Subscribe to:
Post Comments (Atom)
Popular 5 Posts Last 7 days
-
#include<stdio.h> #include<ctype.h> #include<conio.h> main(){ char line[80]; int i=0; clrscr(); pr...
-
transpose of the given matrix #include<stdio.h> #include<conio.h> main() { int a[5][5],b[5][5],m,n,i,j; clrscr(); p...
-
These data types are divided into 4 types. Integral Data Types Floating Data Types Character Data Types Other Data Types
-
#include<stdio.h> #include<conio.h> main() { int i=3,*x; float j=1.5,*y; char k='c',*z; clrscr(); x...
-
multiply two given matrix #include<stdio.h> #include<conio.h> main() { int a[5][5],b[5][5],c[5][5],m,n,p,q,i,j,k; clrsc...
No comments:
Post a Comment