C Workshop
NotQuiteEdges.h
Go to the documentation of this file.
1 #pragma once
2 #include <stdbool.h>
3 
19 int NotQuiteEdges(int *secondSmallest, int *secondLargest);
20 
30 int PrintNotQuiteEdges();
31 
37 int ReadNumber();
38 
int NotQuiteEdges(int *secondSmallest, int *secondLargest)
Reads numbers from the user (terminated by 0) and returns the second smallest and second largest in t...
Definition: NotQuiteEdges.c:5
int PrintNotQuiteEdges()
Reads numbers from the user (terminated by 0) and prints the second largest and second smallest numbe...
Definition: NotQuiteEdges.c:77
int ReadNumber()
Prompts and reads a number from the user.
Definition: NotQuiteEdges.c:95