ĐỀ BÀI:
ĐẢO NGƯỢC MẢNG - KHÔNG DÙNG MẢNG PHỤ
DOWNLOAD CODE TẠI ĐÂY
ĐẢO NGƯỢC MẢNG - KHÔNG DÙNG MẢNG PHỤ
- Code:
#include<stdio.h>
#include<conio.h>
#include<math.h>
#include<string.h>
int main()
{
char a[100],t;
int i,j,n;
printf("nhap chuoi a: ");gets(a);
n=strlen(a);
for(i=0,j=n-1;i<j;j--,i++)
{
t=a[i];
a[i]=a[j];
a[j]=t;
}
for(i=0;i<=n-1;i++)
printf("%c",a[i]);
getch();
return 0;
}
DOWNLOAD CODE TẠI ĐÂY