Sum of two numbers in c programming? All Questions › Category: C Language › Sum of two numbers in c programming? 0 Vote Up Vote Down chetan shidling asked 4 years ago I need code. 1 Answers 0 Vote Up Vote Down chetan shidling answered 4 years ago #include <stdio.h>#include <stdlib.h> int main(){int n1, n2, sum;printf(“Enter two numbers\n”);scanf(“%d %d”,&n1,&n2);sum = n1 + n2;printf(“Your sum is = %d”,sum);}