Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

새싹교실/2017/꽃밭/0523

From ZeroWiki
Revision as of 11:45, 22 May 2017 by 219.255.207.61 (talk) ({CREATE})
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

◀이전수업▒▒▒▒▒다음수업▶ 새싹교실/2017 새싹교실/2017/꽃밭

수업 내용

실습 1 : 대문자로 바꾸는 함수

  • 코드
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>

void toUpper(char* str);

int main()
{
	char input[100];

	printf("\n 문자열을 입력하세요(영문자로만 공백없이) : ");
	gets(input);

	toUpper(input);

	printf("\n 변환된 문자열 : ");
	puts(input);

	return 0;
}

//알파벳 소문자를 대문자로 변환하는 함수
void toUpper(char* str){

}

과제 소개

과제 제출

현지

혜민

유진

후기

물주는사람

유진

현지

혜민


◀이전수업▒▒▒▒▒다음수업▶ 새싹교실/2017 새싹교실/2017/꽃밭