次のコードは ideone では問題なく動作しますが、codeblocks IDE で実行時エラーが発生します。IDE が壊れていますか、それともプログラミング言語固有の問題がありますか?
#include<stdio.h>
int main(){
int *pointer;
int num = 45;
*pointer = num;
printf("pointer points to value %d", *pointer);
return 0;
}