#include int total, count; int main(int argc, const char * argv[]){ total = count = 0; { int count = 0; while (1) { if (count > 10) break; total += count; count++; } printf("%d\n", count); } count++; printf("%d\n", count); return 0; }