The functions that we use need to be flexible, i.e, they should be able to pass values among other functions. The mechanism used to convey information to the function is the ‘argument‘. For instance, we have used the scanf() and printf() function, in which we had been passing arguments like the format string and the list of variables used inside the parentheses in these functions. The arguments are also known as parameters.
#include<stdio.h>
void main()
{
int a,b;
printf("Enter Two Number : ");
scanf("%d%d",&a,&b);
sum(a,b);
}
void sum(int x,int y)
{
int z;
z=x+y;
printf("Sum of Two Number is : %d",z);
}
Enter Two Number : 4 5
Sum of Two Number is : 9
The return statement has the following functionality:
Note: also read about the do-while loop in c & while loop examples in c
If you like my post please follow me to read my latest post on programming and technology.
https://www.instagram.com/coderz.py/
https://www.facebook.com/coderz.py
Staying up to the mark is what defines me. Hi all! I’m Rabecca Fatima a keen learner, great enthusiast, ready to take new challenges as stepping stones towards flying colors.
The formula for the area of a circle is given by πr². Use the Monte…
Given an integer k and a string s, write a function to determine the length…
There is a staircase with N steps, and you can ascend either 1 step or…
Build an autocomplete system that, given a query string s and a set of possible…
Design a job scheduler that accepts a function f and an integer n. The scheduler…
Problem Statement (Asked By Airbnb) Given a list of integers, write a function to compute…