#include <stdio.h>
#include <locale.h>
void const_test(const int c){
//c=5;
}
int main0601(){
setlocale(LC_ALL,"Turkish");
printf("De�i�mez S�nama\n");
const int c=3;
// c=5; // ERROR
printf("%d",c);
return 0;
}
Dosyayı İndir