마지막 삽입 삭제검색출력 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164..
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748#include //PBL 2014244057 이종민int main(){ //글자 수 다르면 그냥 x //같으면 인덱스비교 char str[100] = {" "}; char str2[100] = {" "}; int length = 0, length2 = 0; int i, j; scanf("%s", str); scanf("%s", str2); for(i = 0 ; i
파일 입출력[더블 스페이싱(double spacing)] 텍스트파일에 있는걸 줄바꿈 하여 다른 텍스트 파일에 저장 12345678910111213141516171819202122232425262728293031323334// PBL.cpp: 콘솔 응용 프로그램의 진입점을 정의합니다.// 2014244057 이종민#include "stdafx.h"#define NUM 100 int main() { char READNAME[50] = { " " }; // 읽어올 파일명 char WRITENAME[50] = { " " }; // 읽어온걸 저장할 파일명 char temp[100] = { " " }; FILE *fp; FILE *fp2; printf("읽을 파일명: "); scanf("%s", READNAME);..
비주얼 스튜디오 빈 프로젝트와 콘솔 응용프로그램 차이? Win32 application prepares you the basic issues of an application: resources (like icons, dialog name, dialog menu …), existing definitions (prepared header file), entry point (WinMain ) ,other WndProc function and so forth. Empty Project do not do the prepare job of these coding source. You can see the link I give you. Elegentin Xie MSDN Community Support 여기서 준 링크..
fork() 시스템 호출에 대하여 정리할 것 fork 함수는 unistd.h(POSIX operating system API에 접근을 제공하는 헤더) 안에 system call로 정의되어 있습니다. fork()는 현재 실행되는 프로세스에 대해 복사본 프로세스를 생성합니다.원본 프로세스와 복제 프로세스는 부모, 자식 관계를 갖게 됩니다.fork()가 정상적으로 실행되면부모 프로세스는 생성된 자식 프로세스의 PID값을 리턴되어 가지게 되고, 자식 프로세스는 PID값이 0으로 리턴되어 가지게 됩니다.//복제된 프로세스 내에서는 fork()함수의 반환값(pid)이 저장된 변수는 0이 됩니다. -------------------------------------------------------------------..
#include "stdafx.h"/*2014244057 이종민string.h안쓰고회문인지 아닌지 판단하기if arr[?] = "level"i = 0부터 증가하고 k = 마지막 인덱스 5부터 감소하며 회문의 조건을 충족하는지 비교함*/int main() { char str[100];int i, j, k, length = 0, chk = 0;printf("문자열을 입력받아 회문인지 아닌지 확인하는 프로그램 입니다.\n"); while (str[0] != 'N') { printf("검사할 문자열을 입력하세요('N'은 종료): ");gets(str); for (i = 0; i < 100; i++) {//문자열의 길이 구하기if (str[i] != '\0')length++; elsebreak;}for (j = ..
#include "stdafx.h"#define MAX 100/*2014244057 이종민exceptions: 100번째에 넣을때 idx 99, 100을 참조함 seg fa 귀찮아서 100개 이상 예외처리 안함중복 허용 여부 = 자기가 맘대로 ; 난 안할꺼 중복예외처리 안함삭제시 원소값기준*/int arr[MAX] = { 0, };int i, j, k, cnt = 0, idx = 0, find = 0; void introduction();void insert();void del();void print();void search(); int main() { int menu = 0, n = 0;int temp = 0; while (menu != 5) { introduction();scanf("%d", &men..
#include void introduction(); int getNumber(); int distinction(int n); void result(int n, int check); int main() { int n = 128391283, i, check; i = check = 0; introduction(); while (n != 0) { n = getNumber(); check = distinction(n); result(n, check); } return 0; } void introduction() { printf("====================================================================\n"); printf("이 프로그램은 입력받은 양의정수가 소수..
Contact: j0n9m1n1@gmail.com