Please help me my head is ready to blow
#include<stdio.h>
int main(void){
unsigned short sum1=0;unsigned short counter=0;
printf("Enter the number of integers you want to sum\n");scanf("%hd",&counter);
for (unsigned int i=1;i<=counter;++i)
{
printf("The i is %d and the sum is %d\n",i,sum1);
sum1 =0;// 2 iteration sum =0;
printf("The i is %d and the sum is %d\n",i,sum1);
for(unsigned int j=1;j<=i;++j)
sum1 =sum1+j;// 1 iteration sum=1;
printf("The i is %d and the sum is %d\n\n",i,sum1);
}
return 0;
}
Until now the book I read In the nested loops used to put curly braces But not in this example... Question 1) Why in the second iteration sum will be 3 and not 2 (I ask this because sum initializes to 0 before go to the nested for ) ? Question 2) Why when I want to printf() the j hits error ? Can anyone explain me EXACTLY HOW THIS PROGRAM WORKS ? I mean 1st iteration,2nd Iteration.... Thank you Brothers....
This code:
is equivalent to:
This is because in
for-loop
s without braces, only the very next line is included in the loop.Now in the first iteration, you will get:
Second:
Now, the reason you can't print j, is because your
printf
statements are all outside of your innerfor-loop
, soj
is not defined :)