PROGRAMMING POND
Let's Learn programming in the easiest way
Pages
(Move to ...)
Home
CAMPONY LINK
JAVA
PRACTICE
THEORY
PROGRAM
ARRAY
FUNCTION
▼
Showing posts with label
Function
.
Show all posts
Showing posts with label
Function
.
Show all posts
Wednesday, 4 July 2018
C Function
›
When a program grow in size and complexity then we break that program into small module . These module are known as the function . Function...
Friday, 29 June 2018
Difference between Call by value and Call by references using program of swapping of variable in C
›
Using call by value method : #include <stdio.h> void swap ( int , int ) ; void main () { int a , b , ; clrscr () ; pr...
Monday, 18 June 2018
Program to find out the swap of two variable in C using function
›
/* swap of variables */ # include <stdio.h> void swap (int , int) ; void main () { int a,b ; clrscr () ; printf ("\n Ente...
Sunday, 17 June 2018
Program in C to change its case ( upper to lower and lower to upper) as input from the user using function
›
/* function prototype */ # include <stdio.h> char change-case (char) ; void main () { char ch,c ; clrscr () ; printf ("\n...
Saturday, 16 June 2018
Program to convert a upper case character into lower case character using function in C
›
/* upper to lower */ # include <stdio.h> void upper-to-lower (char) ; void main () { char ch ; printf ("\n Enter a upper c...
Friday, 15 June 2018
Program to convert lower case character into upper without use of library function in C
›
/* lower to upper */ # include <stdio.h> void lower -to- upper (char) ; void main () ; { char ch ; clrscr () ; printf ("\...
Program to find factorial of a number by using user define function in C
›
/* function prototype */ # include <stdio.h> int fact (int) ; void main () { int a,b ; clrscr () ; printf ("\n enter the ...
Thursday, 14 June 2018
Program to find maximum of two number in C using user define function
›
# include <stdio.h> int maxi ( int , int ) void main () { int a,b,c ; clrscr () ; printf ("\n Enter value of a:") ; ...
Wednesday, 13 June 2018
Program to print first n terms of fibonacci series by user define function in C
›
# include <stdio.h> void fibo (int ,int ,int) ; void main () { int a=0,b=1,n ; clrscr () ; printf ("\n How many terms of ...
›
Home
View web version