Given an int variable i that has already been declared , write a for loop that prints the integers 0 through 39, separated by spaces. Use no variables other than i .
Given an int variable i that has already been declared , write a for loop that prints the integers 0 through 39, separated by spaces. Use no variables other than i.
THIS IS THE CODE FOR C:
for (i=0; i<=39; i++){
printf(" %d", i);
}