mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 06:46:50 +08:00
6 lines
No EOL
85 B
C++
6 lines
No EOL
85 B
C++
#include <stdio.h>
|
|
|
|
void Const1() {
|
|
const int foo = 9;
|
|
printf("%d\n", foo);
|
|
} |