सी प्रोग्रामिंग में दो पूर्णांक कैसे जोड़ें? Contents 12345678#include<stdio.h> int main() { int a=10; int b=25; int c=a+b; printf("Sum of given no = %i", c); }Flowchart--
No comments: