Showing posts with label Pointers in C. Show all posts
Showing posts with label Pointers in C. Show all posts

Tuesday, October 8, 2019

Pointers in C

A simple program that I wrote to demonstrate how to use Pointers in C programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com.


Program Listing

pointers.c

/*pointers.c
 Author    : Mr. Jake R. Pomperada,BSCS,MAED-IT
 Date      : November 30,2018  Wednesday 5:10 PM
 Location  : Bacolod City, Negros Occidental
 Website   : http://www.jakerpomperada.com
 Emails    : jakerpomperada@jakerpomperada.com
             jakerpomperada@gmail.com
             jakerpomperada@yahoo.com
             jakerpomperada@aol.com
*/
#include <stdio.h>

int main(void) {
  
  char dad[] = "Virgilio";
  char mom[] = "Lydia";
  
  printf("\n");
  printf("\t");
  printf("%c", *dad);     
  printf("%c", *(dad+1));  
  printf("%c", *(dad+2));  
  printf("\n\n");
  
  char *namePtr;
  namePtr = mom;
  
  printf("\t");
  printf("%c", *namePtr);    
  printf("%c", *(namePtr+1));   
  printf("%c", *(namePtr+2)); 
  printf("\n\n");
  printf("  End of Program");
  printf("\n\n");  
}