일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- microservices
- 코드잇
- BCIT
- MVC
- html
- SpringFramework
- MSA
- 웹개발자
- sql
- 안드로이드
- jsp
- msa개념
- jvm메모리구조
- 밤비노
- Programming
- DB
- job
- two pointers
- C
- 웹개발
- 리액트프로젝트
- mysql
- CSS
- Java
- 데이터베이스
- 자바
- servlet
- 웹개발기초
- Bambino
- coding test
- Today
- Total
목록C (3)
초보 개발자의 기록
Variables Variables are containers for storing data vaules. int: Stores integers without decimals float: Stores floating point numbers with decimals char: Stores single characters. Char values are surrounded by single quotes Declaring (Creating) Variables To create a variable,specify the type and assign it a value type variableName = value; The equal sign is used to assign a value to the variabl..
#include header file library. Header files add functionality to C programs White space C ignores white space. multiple lines makes the code more readable. main() main() is called a function. Any code inside its curly brackets {} will be executed Esxape sequence New lines \n It forces the cursor to change its positio to the beginning of the next line on the screen. To insert a new line, use the \..
You are given two strings word1 and word2. Merge the strings by adding letters in alternating order, starting with word1. If a string is longer than the other, append the additional letters onto the end of the merged string. Return the merged string. Example 1: Input: word1 = "abc", word2 = "pqr" Output: "apbqcr" Explanation: The merged string will be merged as so: word1: a b c word2: p q r merg..