#include<iostram.h>
#include<conio.h>
void welcome ()
{
cout<<"welcome to C++;
}
void main()
{
welcome();
}
where is the function called preseny
Answers
Answered by
1
Answer:
At first main() will be called by system processor then main() will call welcome() and after called by main(), welcome function will be print welcome to c++.
Answered by
1
Explanation:
Main() will be called operator and it will print welcome to c++
Similar questions