posted by 구로공돌이 2017. 4. 5. 13:15

Elevation = atan2(높이 , 거리 )

posted by 구로공돌이 2016. 9. 26. 21:13


Something like this could be useful:

char str[] = "0x1800785";
int num;

sscanf(str, "%x", &num);
printf("0x%x %i\n", num, num); 

Read man sscanf


http://stackoverflow.com/questions/14050452/how-to-convert-byte-array-to-hex-string-in-visual-c



스택 오버플로우에서 발췌한 글입니다.

posted by 구로공돌이 2016. 1. 12. 17:10

WPF
button1.RaiseEvent(new RoutedEventArgs(Button.ClickEvent, button1));

WinForm
button1.PerformClick();

 

 

 

출처 : http://www.hoons.net/Board/qanet3/Content/52501