1
#include <stdio.h>
main(){
int cont=15;
while(cont<=200){
printf("%d\n",&cont);
cont++;
}
}
Supposedly the counter should start with the value 15 and go showing its value by adding 1 at the end of each cycle. But when I run the program shows only 2293324 on all lines... I already tried to add another variable to make the square and it remains the same.
Ok, I get it, & only fits the variables inside the scanf... Thanks for the help.
– Nope Nope