In this class, I learned about the basic steps to start language "C".
To this end, the "Dev C++" program was first installed to comply with the integrated development environment (IDE).
To verify that the installation was completed normally, I tried to output the text "Hello C World".
#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
printf("Hello C World");
return 0;
}
In order to print out the letter "Hello C World", it must be printed with a "printf" output function inside the main() function. And the result showed as below.
This code can be saved first and then compiled to see the execution results.
As a result, it can be seen that the IDE environment setting was successfully complete.
'Study Meeting > 빡공단 30기' 카테고리의 다른 글
[Day 6] ASCII Code: How to represent letter in C Language? (1) | 2023.01.07 |
---|---|
[Day 5] Standard input/output functions: scanf() and printf() (0) | 2023.01.05 |
[Day 4] Character variable : To represent a character type (0) | 2023.01.04 |
[Day 3] Numeric variables : To represent a number type (0) | 2023.01.03 |
[Day 2] Output function in C language: printf() (0) | 2023.01.02 |