error, warning, success1

PHOTO EMBED

Fri Sep 16 2022 08:19:46 GMT+0000 (Coordinated Universal Time)

Saved by @kodekutulisanku #c++

#include <stdio.h> 
int main(void) 
{
	const int j = 20; 
	int *ptr = &j;
	printf("*ptr: %d\n", *ptr); 
	return 0; 
}
content_copyCOPY