Mapper
libraries
cbrfc
callit.c
Go to the documentation of this file.
1
#include <stdio.h>
2
#include <stdlib.h>
3
#include <math.h>
4
5
void
main
()
6
{
7
char
ch1, ch2;
8
int
isQualBetter
(
char
,
char
);
9
10
ch1=
'S'
;
11
ch2=
'M'
;
12
13
if
(
isQualBetter
(ch1,ch2) > 0)
14
printf
(
"%c is better than %c \n"
,ch1,ch2);
15
else
16
puts(
"not better"
);
17
18
printf
(
"return value is %d \n"
,
isQualBetter
(ch1,ch2));
19
}
20
main
void main()
Definition:
callit.c:5
isQualBetter
int isQualBetter(char ch1, char ch2)
Definition:
chkflg.c:5
printf
printf("fbuf is %s\n", fbuf)
Generated by
1.9.1