Answers for "check if number can be divided into sum of 2 numbers which is sum of first n natural numbers"

C
3

how to find sum of two nums

#include<stdio.h>
int main() {
int a, b, sum;
printf("\nEnter two no: ");
scanf("%d %d", &a, &b);
sum = a + b;
printf("Sum : %d", sum);
return(0);
Posted by: Guest on December-22-2020

Code answers related to "check if number can be divided into sum of 2 numbers which is sum of first n natural numbers"

Code answers related to "C"

Browse Popular Code Answers by Language