![]() ![]() | ![]() |
|
ปรับปรุง : 2564-07-13 (ปรับแฟ้ม) |
| datatype | TurboC | Programming |
// 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;
}
|
|
| "ไม่เริ่มต้นในวันนี้ จะไม่มีทางสำเร็จในวันพรุ่ง" โดย โยฮัน ว็อล์ฟกัง ฟ็อน เกอเทอ |