Define and use a struct : Struct Define « Structure « C / ANSI-C






Define and use a struct

#include <stdio.h>

struct struct_type {
  int i;
  char ch;
  double d;
  char str[80];
} s;

int main(void)
{
  printf("Enter an integer: ");
  scanf("%d:", &s.i);
  
  printf("Enter a character: ");
  scanf(" %c", &s.ch);
  
  printf("Enter a floating point number: ");
  scanf("%lf", &s.d);
  
  printf("Enter a string: ");
  scanf("%s", s.str);

  printf("%d %c %f %s", s.i, s.ch, s.d, s.str);

  return 0;
}


           
       








Related examples in the same category

1.Using a structure representing a length
2.Using a structure representing a person's name
3.Using a structure to record the count of occurrences of a word
4.How to use struct
5.Exercising the horse: Structure declaration
6.Pointing out the horses: allocate memory for struct
7.Define a simplest struct