Hello, I need help to understand why its printing (14) thank you.
Code:
#include <stdio.h>
#define N 100
int main()
{
    int i,j;
    for(i=0,j=0;i<N;++j,i+=j);
    printf("%d",j);

}