Skip to content

Instantly share code, notes, and snippets.

@kakarot-dev
Last active December 5, 2022 16:58
Show Gist options
  • Save kakarot-dev/c290a76af9a97fc41da2dc2ff3175995 to your computer and use it in GitHub Desktop.
Save kakarot-dev/c290a76af9a97fc41da2dc2ff3175995 to your computer and use it in GitHub Desktop.
#include <iostream.h>
#include <stdio.h>
#include <conio.h>
void main() {
int i,sum = 0;
cout << "Sum of first 10 numbers: ";
for (i = 1; i <= 10; i++) {
sum = sum + i;
}
cout << sum;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment