Program 1: Implement a program to find cube of any number using function cube having argument list and return type. #include< stdio.h > #incl…
Read moreProgram 2: Design a function which takes two integer values and make addition and return addition to calling function. (C function with arguments an…
Read moreProgram 3: Design a function sum, which takes two integer values and make addition and does not return addition to calling function. But sum functi…
Read moreProgram 4: Design a function sum, which takes two integer values inside the body of sum function and make addition and return addition to calling f…
Read moreProgram 5: Design a function sum, which takes two integer values inside the body of sum function and make addition and dose not return addition to …
Read moreProgram 6: Swap the two numbers using call by value. Swap function with argument list but no return type . #include< stdio.h > #include< c…
Read moreProgram 7: Swap the two numbers using call by reference. Swap function with argument list but no return type. #include< stdio.h> #include<…
Read moreProgram 8: Implementation of factorial function using recursion. #include< stdio.h> #include< conio.h> long factorial(int); void main()…
Read moreProgram 9: Implementation of factorial function using non-recursion. #include < stdio.h > #include< conio.h > long factorial(int); void…
Read moreProgram 10: Implement a function that returns both sum and difference values to calling function. (Function that return multiple value) #include<…
Read more
Social Plugin