Saturday 10 April 2021

Function in C and C++ Qus 1

 #include<stdio.h>

#include<conio.h>

#include<iostream.h>

//void show();

void show()

{

cout<<"Show-1";

}

int main()

{

clrscr();

show();

//int a=show();

//cout<<endl<<a;

getch();

return 0;

}

/*

void show()

{

cout<<"Show";

}

*/

No comments:

Post a Comment