Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions program1.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include<iostream>
#include<conio.h>
using namespace std;

void check(int *main_local_addr)
{
/*
Expand All @@ -19,6 +20,7 @@ void check(int *main_local_addr)
else
cout<<"\n\tSTACK GROWS DOWNWARD";
}

int main()
{
/*
Expand All @@ -27,6 +29,7 @@ int main()
return value:none
approach:-calling function check
*/

int main_local_par;
check(&main_local_par);
getch();
Expand Down