Tag: pointer

21
May
2017

Typedef Enum Union Project

code: #include<stdio.h> typedef union { double weight; int size; char color[10]; } Description; typedef struct { int…

14
Mar
2017

Details about Pointer

     

12
Feb
2017

A good example of pointer code at Hacker Rank

A good example of pointer code at Hacker Rank: #include <stdio.h> void update(int *a,int *b) { //…

13
Feb
2015

Pointer

What is pointer? Pointer is actually a variable which points to another variable by address not value…