forked from qt-creator/qt-creator
8 lines
54 B
C++
8 lines
54 B
C++
|
|
int main()
|
||
|
|
{
|
||
|
|
int *i;
|
||
|
|
*i = 5;
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}
|