mirror of
https://github.com/Light-City/CPlusPlusThings.git
synced 2026-02-12 06:55:20 +08:00
support bazel complie this project and format code.
This commit is contained in:
@@ -1,10 +1,8 @@
|
||||
#include<iostream>
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
int main(){
|
||||
|
||||
const int p = 3;
|
||||
const int * const ptr = &p;
|
||||
cout<<*ptr<<endl;
|
||||
|
||||
int main() {
|
||||
const int p = 3;
|
||||
const int *const ptr = &p;
|
||||
cout << *ptr << endl;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user