전체 글
-
C++ class vs Structure아무거나적어~ 2023. 2. 2. 10:33
둘이 굉장히 유사함. 차이점은 Class 는 기본적으로 private, Structure 는 기본적으로 public. Class 는 상속을 염두에 두고 사용하는 것이고 Structure 는 여러 데이터를 모아서 쓰기 위해 사용하는 것이다 Structure vs class in C++ - GeeksforGeeks A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions. www.geeksfo..
-
[python] round 는 당신이 알고 있는 반올림이 아닙니다실수모음 2023. 1. 14. 04:35
https://stackoverflow.com/questions/33019698/how-to-properly-round-up-half-float-numbers ", round(n)) This code prints: 0.5 => 0 1.5 => 2 2.5 => 2 3.5 => 4 ..." data-og-host="stackoverflow.com" data-og-source-url="https://stackoverflow.com/questions/33019698/how-to-properly-round-up-half-float-numbers" data-og-url="https://stackoverflow.com/questions/33019698/how-to-properly-round-up-half-float-..
-
[visual studio] setting아무거나적어~ 2023. 1. 11. 01:17
글꼴 https://fonts.google.com/specimen/JetBrains+Mono Google Fonts: JetBrains Mono JetBrains Mono is a typeface made for the specific needs of developers. Find more informations about font features, design and language support on www.jetbrains fonts.google.com 글씨 크기 16 테마 https://marketplace.visualstudio.com/items?itemName=FINNSEEFLY.Darcula-Theme-For-Visual-Studio Darcula Theme - Visual Studio Ma..
-
-
[c++] c++ cstype string아무거나적어~ 2023. 1. 10. 23:11
strcpy 는 destination배열의 크기를 고려하지 않으므로 허용되지 않은 메모리를 덮어쓸 수 있음. 쓰지 마셈 strncpy 가 그 대안인데 주의해서 사용할 것. 일어날 수 있는 문제점 source 크기보다 작은 개수만큼 복사할 때 destination에 널문자 복사 안됨 -> 끝에 널문자 추가해주기 destination의 크기가 복사하는 개수보다 작을 때(정확하게는 복사개수 이하일 때) -> 널문자 넣을 공간 없어서 제대로 작동 안함 + 허용되지 않은 메모리 덮어씌우게 됨 결론 destination 의 크기는 다음과 같이 잡는다 복사 문자의 개수 + 1≤ destination의 크기 (1은 널문자 넣기위한 공간) 널문자는 우리가 추가 해주자
-
[c++] The pointer that points to the whole array아무거나적어~ 2023. 1. 10. 16:24
Pointer to an Array | Array Pointer - GeeksforGeeks A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions. www.geeksforgeeks.org 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 #include using namespace std; int main() { int arr[5]{}; int* p = arr;..
-
-
python sublist reverse카테고리 없음 2023. 1. 8. 16:45
0 1 2 3 4 5 a b c d e f dcb 얻고 싶으면 list[3:0:-1] Python List Slicing - Learn By Example Learn to slice a list with positive & negative indices in Python, modify insert and delete multiple list items, reverse a list, copy a list and more. www.learnbyexample.org 첨부된 그림은 inverse step일 때 설명을 못해서 별로인듯....