블로그
-
유럽의 새로운 출입국 시스템은 엉망진창
Europe’s New Entry/Exit System Is a Mess, and It’s Not Going Away 유럽의 새로운 출입국 시스템은 엉망진창이며, 없어질 기미가 보이지 E.U. leaders rebuffed a plea from the aviation industry to pause the biometric checkpoints, which have
blog.naver.com · 2026.07.09
-
[펌웨어] FIIO BTR7 V2.05 업데이트
자세한 사항은 홈페이지를 참고 바랍니다. 1.Fixed the issue where Bluetooth connection to certain mobile phones causes system 연결이 시스템 충돌을 일으키는 문제를 해결했습니다. 2.Fixed the noise problem that occurs when resuming playback after a pause
blog.naver.com · 2025.06.25
-
포인터 실습 중... 멘붕
amp;max, &mid, &min); printf("Print in descending order : %1f, %1f, %1f\n", max, mid, min); system ("pause"); return 0; } void order(double *maxp, double *midp, double *minp) { if (*minp > *maxp) exchange
blog.naver.com · 2017.05.31
-
열혈 C++ chapter 2 - 6
strcpy(str2, str1); printf("%s: %f \n", str1, sin(0.14)); printf("%s: %f \n", str2, abs(-1.25)); system ("pause");} Colored by Color Scriptercs
blog.naver.com · 2015.08.13
-
열혈 C++ chapter 1 - 5 이름공간(namespace)에 대한 소개
정의한 함수" << std::endl; }} int main(){ BestComImp1::simpleFunc(); progcomimp1::simplefunc(); system ("pause");} Colored by Color Scriptercs nameSp2.cpp 123456789101112131415161718192021222324252627282930
blog.naver.com · 2015.08.11
-
열혈 C++ chapter 2 - 5 malloc & free 를 대신하는 new & delete
* str = MakeStrAdr(20); strcpy(str, "I am so happy"); cout << str << endl; free(str); system ("pause");} char * MakeStrAdr(int len){ char * str = (char*)malloc(sizeof(char) * len); return str;}
blog.naver.com · 2015.08.13
-
열혈 C++ chapter 1 - 3 매개변수의 디폴트 값
std::cout << Adder(5) << std::endl; std::cout << Adder(3, 5) << std::endl; system ("pause");}Colored by Color Scriptercs DefaultValue2.cpp 12345678910111213141516#include int Adder(int
blog.naver.com · 2015.08.10
-
열혈 C++ chapter 1 - 4 인라인(inline) 함수
std::cout << SQUARE(5) << std::endl; std::cout << SQUARE(12) << std::endl; system ("pause");} inline int SQUARE(int x){ return x * x;} Colored by Color Scriptercs 알게된점 매크로 함수는 자료형에 의존하지
blog.naver.com · 2015.08.11
-
열혈 C++ chapter 2 - 4 참조자와 함수
lt;< "val1: " << val1 << endl; cout << "val2: " << val2 << endl; system ("pause");} void SwapByRef2(int &ref1, int &ref2){ int temp = ref1; ref1 = ref2; ref2 = temp;
blog.naver.com · 2015.08.13
-
문제 2 - 3
"], [" << pref.ypos << "]"<< endl; delete pptr; delete pptr2; delete &pref; system ("pause");}; point& PntAdder(const point .......
blog.naver.com · 2015.08.13
블로그 결과 더보기 →