목록전체 글 (513)
Rylah's Study & Daily Life
 02. 변수, 상수, 입력, 출력, 주석
      
      
        02. 변수, 상수, 입력, 출력, 주석
        정수와 실수 정수 : 1, 0, -1 실수 : 1.5, -1.5 , 2.235, 3.141592 변수 : 변하는 수 #include int main(void) { int age = 12; // age는 변수 이름, 자료형 정수이기 때문에 int를 활용 printf("%d\n", age); //printf("Hello World!\n"); return 0; } #include int main(void) { // 정수형 변수에 대한 예제 /* int age = 12; // age는 변수 이름, 자료형 정수이기 때문에 int를 활용 printf("%d\n", age); age = 13; // 변할 수 있는 수 : 변수 printf("%d\n", age); //printf("Hello World!\n"); */..
        Study/C
        
        2021. 11. 1. 13:05
      
    
      
      
        01. 강의 소개
        
  
  
        
    
            
            
            
            
            
            
              
            
          https://youtu.be/q6fPjQAzll8
        Study/C
        
        2021. 11. 1. 12:27
      
     
          