Good afternoon, how to make the compiler delete and forget the variable so that it can be initialized again? It is necessary to make the variable not change its name, but change its data type.
include <stdio.h> int main(void) { float a = 10.10; float temp = a; free(a); // просто segmentation fault int a = (int)temp; printf("%d\n", a); // Должно быть 10 }
void *can roll. - PinkTux