void main() { int m[2][3],r,c; clrscr(); for(r=0; r<2; r++) { for(c=0; c<3; c++) { printf("enter ...
Transpose
07:21
Language and programming is very important now a days to form a career in computer programming, all you need is good command over C Language programming. i have learned very interesting lessons in Xaviers College of Computer Sciences Ahmedabad so that able to share you important information in computer language programming. my blog is about not only programming but also for other in depth form of computer programming in india specially ahmedabad.I am Smith Solace from Ahmedabad Gujarat
void main() { int m[2][3],r,c; clrscr(); for(r=0; r<2; r++) { for(c=0; c<3; c++) { printf("enter ...
#include<stdio.h> #include<string.h> void main() { char s[20],str[20]; int j,i=0; clrscr(); printf("enter te...
void main() { int matrix[4][4],r,c; for (r=0; r<4; r++) { for(c=0; c<4; c++) { printf("enter[%d][%d]no:...
// accept number and put odd number; void main() { int n,sum=0,digit; printf("enter the number"); scanf("%...
void main() { void swap(); //proto type swap(); getch(); } void swap() { int a=5,b=7,t; t=a; a=b; b=t; ...
void swap(int x,int y) { int t; t=x; x=y; y=t; printf("%d %d\n",x,y); } void main() { int a=5, b=10; ...
void swap(int x,int y) { int t; t=x; x=y; y=t; printf("%d %d\n",x,y); } void main() { int a=5, b=10; ...
//temprature conversion c_f void main() { int c; float f; c=2; f=1.8*c-32; printf("%f",f); }
void main() { int matrix[4][4],r,c; for (r=0; r<4; r++) { for(c=0; c<4; c++) { printf("enter[%d][%d]no:...
// accept upper case lawer case void main() { char m; clrscr(); printf("enter an alphabet:"); scanf("%d...
// include the function initials// void main() { char name[5][20]; int i,j; clrscr(); for(i=0;i<5; i++) { printf(...
//accept void main() { char ch; clrscr(); printf("enter any character:"); scanf("%c",&ch); if(ch>...
void main() { int i=0, j=0; clrscr(); while(i<5) { j=0; while(j<i) { printf("%d\t",j); j=...
void main() { int n, sum; n=2, clrscr(); printf("enter a number"); scanf("%d",n); while(n>=2) { su...