C Exercises: Show the usage of pointer to structure
C Pointer : Exercise-18 with Solution
Write a program in C to demonstrate the use of pointers to structures.
Pictorial Presentation:

Sample Solution:
C Code:
#include <stdio.h>
struct EmpAddress
{
char *ename;
char stname[20];
int pincode;
}
employee={"John Alter","Court Street \n",654134},*pt=&employee;
int main()
{
printf("\n\n Pointer : Show the usage of pointer to structure :\n");
printf("--------------------------------------------------------\n");
printf(" %s from %s \n\n",pt->ename,(*pt).stname);
return 0;
}
Sample Output:
Pointer : Show the usage of pointer to structure : -------------------------------------------------------- John Alter from Court Street
Flowchart:

C Programming Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a program in C to print the elements of an array in reverse order.
Next: Write a program in C to show a pointer to union.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join