03일 C 언어(03): 산술 연산자 - 우선순위 및 결합성

287 단어
코드
#include 
int main()
{

    // 1.             
    //            ,      
    //        * / %       + -
//    int result = 3 + 4 + 5 + 6;
    int result = 3 + 4 * 5 + 6;
    printf("result = %i
",result); return 0; }

좋은 웹페이지 즐겨찾기