mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-08 09:07:53 +00:00
10 lines
186 B
C++
10 lines
186 B
C++
|
#include <stdio.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
int* const savepos = sizeof(*savepos) ? 0 : 0;
|
||
|
|
||
|
// code for the next line is left out!
|
||
|
printf("size of thingy is %d\n", sizeof(*savepos));
|
||
|
}
|