Computer Science, asked by mini8795, 11 months ago

#include<iostram.h>
#include<conio.h>
void welcome ()
{
cout<<"welcome to C++;
}
void main()
{
welcome();
}

where is the function called preseny​

Answers

Answered by charlie1505
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 sbh17
1

Explanation:

Main() will be called operator and it will print welcome to c++

Similar questions