728x90
포인터 주소를 잘 다루고 싶다.. + 시스템 함수 잘 다루고 싶다..
#include<stdio.h>
#include<string.h>
int main()
{
char *ad;
int len = 1;
char *t;
char test[10] = "123456790";
ad = strstr(test, "45");
t = ad;
printf("t = %s\n", t);
int i = 0;
for(i = 0 ; i < strlen(test) ; i++)
{
if(*t == '5')
{
printf("IN\n");
break;
}
else
len++;
t++;
}
printf("%s,,%d\n", ad, len);
return 0;
}
728x90
'개발 업무(코딩)-개발자였을때 썼던..' 카테고리의 다른 글
clock_t 를 이용한 c프로그램 시간측정 (0) | 2023.01.08 |
---|---|
LOAD DATA LOCAL INFILE (대용량 데이터 insert) (0) | 2023.01.08 |
c-json lib 설치 및 makefile (0) | 2023.01.08 |
코스콤 koscom api 관련 문서와 링크 (0) | 2023.01.08 |
curl 한글깨짐현상 + MemoryStruct(feat. koscom api) (0) | 2023.01.08 |