본문 바로가기
728x90

비트 단기/c24

c 7 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657#include "stdafx.h" void func74() { int *a, *b, *c, *d, *e; int *a0, *a1, *a2, *a3, *a4; int *ar[5]; //다 같은 말 //포인트 변수 5개 달라는 말 ar[0] = new int;//주소 받는다 ar[1] = new int[5]; int num = 100; ar[2] = #//메모리를 공유 받는다 //한개짜리 int br[10] = { 0 }; ar[3] = &br[0]; //br이라고 적어도 됨 ar[4] = ar[3]; *ar[0].. 2018. 11. 16.
c 6 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374#include "stdafx.h"#include "windows.h"void func66() { //for (int i = 0; i 2018. 11. 15.
c 5 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816.. 2018. 11. 13.
c 4 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816.. 2018. 11. 12.