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

새싹교실/2011/씨언어발전/4회차

From ZeroWiki
Revision as of 09:32, 4 May 2011 by imported>경세준

4회차(5월 4일)

수업내용

  • Zeropage 정모에 대한 안내(다음 정모 "새싹과 함께하는 위키 놀이" 안내)
  • 함수의 사용법(함수의 오버로딩)
  • 함수의 장점
#include <stdio.h>
int Fact(int a);

void main(){

	printf("%d",Fact(3));

}


int Fact(int a){

	int result=1;

	if(a==1) return 1;

	return Fact(a-1)*a;

}

후 기

이상태

하수영