Computer Science, asked by shubhsinghal4280, 1 year ago

C program to find sum of digits of a number in a given base

Answers

Answered by mahesh45444222
0

#include<stdio.h>

main()

{

int a=1;

int b=2;

int c;

c=a+b;

printf("sum of two digits is: %d", c);

}

Similar questions