웹 애플리케이션 프레임웍의 과거,현재 그리고 미래 - 봄날은 간다

68
봄날은 간다 Past, Present & Future of Web Application Framework 앱스프레소Lab / 장동수 / @iolothebard 1

Upload: dongsu-jang

Post on 30-Oct-2014

13 views

Category:

Technology


1 download

DESCRIPTION

 

TRANSCRIPT

results");char *data = getenv("QUERY_STRING");if(data == NULL) {printf("

Error!

");} else if(sscanf(data,"m=%ld&n=%ld",&m,&n) != 2) {printf("

Error!

");} else {printf("

The product of %ld and %ld is " "%ld.

",m,n,m*n);}printf("