Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cre Ins Acc #429

Open
bca072024 opened this issue Jul 12, 2024 · 0 comments
Open

Cre Ins Acc #429

bca072024 opened this issue Jul 12, 2024 · 0 comments

Comments

@bca072024
Copy link

Write a c program to create Initialize & Access pointer Variable
#include<stdio.h>
#include<conio.h>
void main()
{
int n1,n2,*ptr;
printf("\nEnter any Number:");
scanf("%d",&n1);
ptr=&n1;
printf("\n VALUE IN ADRESS=%u is %d",ptr,*ptr);
printf("\nEnter any Number:");
scanf("%d",&n2);
ptr=&n2;
printf("\n VALUE IN ADRESS=%u is %d",ptr,*ptr);
}

@bca072024 bca072024 changed the title Program Create Ins Acc Jul 12, 2024
@bca072024 bca072024 changed the title Create Ins Acc Cre Ins Acc Jul 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant