Program:
1. Write a program to print the sum of any three numbers.
2. Write a program to print your name and age.
plz give me answers plz
Answers
Answer:
1 - Addition of three numbers using function in C
Addition of three numbers using function in C#include <stdio.h>
Addition of three numbers using function in C#include <stdio.h>#include <conio.h>
Addition of three numbers using function in C#include <stdio.h>#include <conio.h>sum(int,int,int);
Addition of three numbers using function in C#include <stdio.h>#include <conio.h>sum(int,int,int);int a,b,c,d;
Addition of three numbers using function in C#include <stdio.h>#include <conio.h>sum(int,int,int);int a,b,c,d;printf("\nACCEPT VALUE FOR a,b,c:\n");
Addition of three numbers using function in C#include <stdio.h>#include <conio.h>sum(int,int,int);int a,b,c,d;printf("\nACCEPT VALUE FOR a,b,c:\n");scanf("%d %d %d",&a,&b,&c);
Addition of three numbers using function in C#include <stdio.h>#include <conio.h>sum(int,int,int);int a,b,c,d;printf("\nACCEPT VALUE FOR a,b,c:\n");scanf("%d %d %d",&a,&b,&c);d=sum(a,b,c);
Addition of three numbers using function in C#include <stdio.h>#include <conio.h>sum(int,int,int);int a,b,c,d;printf("\nACCEPT VALUE FOR a,b,c:\n");scanf("%d %d %d",&a,&b,&c);d=sum(a,b,c);printf("\nSUM OF %d,%d and %d IS %d",a,b,c,d);
Explanation: