Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "stdafx.h"
- #include <iostream>
- // Mesaj gonderen fonksiyon.
- using namespace std;
- //Fonksiyon prototipi tanımlama..
- int mesaj();
- int mesaj()
- {
- cout << "hos geldiniz" << endl;
- return 0;
- }
- void main()
- {
- // Fonksiyon çağrılıyor..
- mesaj();
- system("PAUSE");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement