C Programming Tutorial - - Pointers

#include<stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include <math.h>


int main() {
  int coffee = 19;
  printf("%p ", &coffee);
}




include<stdio.h>

#include <stdlib.h>

#include <ctype.h>

#include <string.h>

#include <math.h>





int main() {

  int coffee = 19;

  printf("Address \t Name \t Value \n");



 printf("%p \t %s \t %d \n", &coffee, "coffee", coffee);



}

Comments