Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Practice programs on for, while, and do-while loops in C.
#include <stdio.h> int main() { int n; scanf("%d", &n); for (int i = 1; i <= n; i++) { printf("%d\n", i); } return 0; }
#include <stdio.h> int main() { int n; scanf("%d", &n); for (int i = 1; i <= 10; i++) { printf("%d x %d = %d\n", n, i, n * i); } return 0; }
#include <stdio.h> int main() { int n, sum = 0; scanf("%d", &n); while (n > 0) { sum += n % 10; n /= 10; } printf("Sum = %d\n", sum); return 0; }