일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로세스
- Los
- rubiya
- 웹해킹
- Linux
- webhacking.kr
- crosssitescripting
- 운영체제
- web
- SQLInjection
- SQL
- SQL Injection
- webhackingkr
- lordofsqlinjection
- XSS
- 상호배제
- sqli
- 알고리즘
- Writeup
- CODEGATE
- 화이트햇콘테스트
- WebHacking
- ctf
- Python
- 시스템프로그래밍
- 시스템
- CCE
- 해킹
- hacking
- ubuntu
- Today
- Total
One_Blog
C - 파일에 글 쓰고 알파벳 갯수 세기 [시스템 프로그래밍] 본문
#include<stdio.h>
#include<stdlib.h>
#include<sys/types.h>
#include<fcntl.h>
#include<unistd.h>
#include<string.h>
#include<errno.h>
int main(int argc, char **argv)
{
if(argc!=2) exit(0);
filei(argv[1]);
fileo(argv[1]);
}
void filei(char *filename)
{
int fd = open(filename, O_RDWR | O_CREAT, 0644);
char flag[1024] = {};
scanf("%s",flag);
write(fd, flag, 25);
printf("%s\n",flag);
close(fd);
}
void fileo(char *filename)
{
int fd = open(filename, O_RDWR | O_CREAT, 0644);
char String[1024] = {};
read(fd,String,1024);
int count[26] = {0};
for (int i = 0;String[i] !='\0';i++)
{
if(isalpha(String[i]))
{
int index = tolower(String[i]) - 'a';
count[index]++;
}
}
int sum = 0;
printf("Alphabet Count : ");
for(int i = 0; i < 26; i++)
{
sum += count[i];
}
printf("%d\n",sum);
close(fd);
return 0;
}
시스템 프로그래밍 재밌어요 😀
'알고리즘' 카테고리의 다른 글
백준 1707 - 이분 그래프 (0) | 2023.06.21 |
---|---|
C - 시스템 프로그래밍 예제 - 3 [시스템 프로그래밍] (0) | 2023.03.17 |
C - 시스템 프로그래밍 예제 - 2 [시스템 프로그래밍] (0) | 2023.03.17 |
C - 시스템 프로그래밍 예제 - 1 [시스템 프로그래밍] (0) | 2023.03.17 |
이중 연결 리스트 - C언어 구현 (2) | 2022.11.16 |