FUNCTIONS PART-1 NO ARGUMENT AND NO RETURN TYPE

 #include <iostream>

using namespace std;

void name()

{

int a=3;

int c=9;

cout<<a+c;

}

int main()

{

 name();

 return 0;

}

Comments

Popular posts from this blog

LIST ADT USING LINKED LIST

CLASSES CREATION

SORTING PROGRAM