mirror of
https://github.com/Light-City/CPlusPlusThings.git
synced 2026-02-03 10:33:25 +08:00
8 lines
133 B
C++
8 lines
133 B
C++
#include <iostream>
|
|
using namespace std;
|
|
int main() {
|
|
const int num = 10;
|
|
const int *const ptr = #
|
|
cout << *ptr << endl;
|
|
}
|