answersLogoWhite

0


Best Answer

Please visit http://talentsealed.blogspot.com/2009/10/to-find-smallest-among-three-using.htmlfor answer.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

It's an algorithm you want, or a C program?

Here is the algorithm:

min3 (a, b, c) := min2 (a, min2 (b, c))

min2 (x, y) := y if x>y; x otherwise

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write a c program to find smallest among three using function with pointers?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write a program to illustrate the usage of pointers with arrarys and functions?

* * * * * * * * * * write the c++ program and show me brifily?


How to write a C program to find largest 2 numbers using pointers?

program to find maximum of two numbers using pointers


How do you write c program to perform sum of elements of matrix using pointers with functions?

i cant write


Write a c program to copy two strings using pointers?

nahi malum


Where do we write main function in a c program?

Into the source program.


Write a Shell program to find the smallest number from a set of numbers?

k


How do you write a c program to find the smallest word in a string?

what is if(!(str[i]==32))


Write a program that read phrase and print the number of lower-case letter in it using function of counting?

write a program that reads a phrase and prints the number of lowercase latters in it using a function for counting? in C program


How do you write a C program to copy to strings using pointers?

mystrcpy (char* dest, char* src) { while ((*dest++ = *src++) != '\0); }


Can you write a program without specifying the prototype of any function?

You can write a program without specifying its prototype when the function returns an integer.If the prototype is not mentioned the compiler thinks that the return type of the function used is integer.When making program which return integer you can ignore writing the protoype.


Write a c program for matrix addition using function?

#include<


How to write a C program for left factoring?

Name two variables x and y. Divide the largest by smallest. If remainder is zero then the smallest is the HCF.