Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- hardwareacceleration
- coroutines
- 다윈
- Android
- 컴파일
- null safety
- convert
- vuepress
- bigquery
- Glide
- LAYER_TYPE_SOFTWARE
- firebase
- fabic
- Gradle
- log
- 안드로이드
- web3js
- C
- porterduff
- error
- fabric-sdk-java
- 스트리밍
- ethereum
- quick-start
- Exception
- Realm
- kotlin
- dataginding
- test
- Hyperledger
Archives
- Today
- Total
날마다 새롭게 또 날마다 새롭게
reverse - 문자열 뒤집는 함수 구현 코드 본문
#include <string.h>
/* reverse : reverse string s in place */
void reverse(char s[])
{
int c,i,j;
for(i=0,j=strlen(s)-1;i<j;i++,j--)
{
c=s[i];
s[i]=s[j];
s[j]=c;
}
}
Comments