// function, char, int, cout<br>การเรียก 2 function พร้อมส่งค่าผ่าน function
/* http://www.thaiall.com/tc */
#include <iostream.h>
#include <conio.h>
void myok1(char x);
void myok2(int,int);
void main()
{
clrscr();
myok1(
'a'
);
myok2(1,2);
getch();
}
void myok1(char x) { cout << x; }
void myok2(int x,int y)
cout << x << y;