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

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

Oct 30, 2014

Download

Technology

Dongsu Jang

 
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
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("