Skip to content
Snippets Groups Projects
Commit c7787fde authored by munyeong Jung's avatar munyeong Jung
Browse files

update lec06 tests

parent 1eba2240
No related branches found
No related tags found
No related merge requests found
#include <stdio.h>
#define VALUE_ONE 1
// Count number of 1 (binary)
......
#include <stdio.h>
int main()
{
int a = 100;
int b = 200;
fprintf(stdout, "%d : %d\n", a, &a); // &a는 a가 저장된 주소
fprintf(stdout, "%d : %d\n", b, &b);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment