Sunday, June 2, 2019

initialize the integer pointer

/* ***********************************************
    Write a program to initialize the integer pointer

 date:03-06-2019
 created by:ANIL DURGAM

*****************************************************/

#include<stdio.h>
int main()
{
int a = 30;
int *ptr;

ptr = &a;
printf("\nValue of ptr : %u",ptr);

return(0);
}



print pattern related programs

pattern 2

No comments:

Post a Comment

python class topic video