Combining variables with struct - C++ Data Type

C++ examples for Data Type:struct

Introduction

A struct is a way to collect a group of variables into a structure.

Demo Code

struct Structure1 {
   char c;/*from   w  w  w.  j a  v  a 2 s.com*/
   int i;
   float f;
   double d;
};
int main() {
   struct Structure1 s1, s2;
   s1.c = 'a'; // Select an element using a '.'
   s1.i = 1;
   s1.f = 3.14;
   s1.d = 0.00093;
   s2.c = 'a';
   s2.i = 1;
   s2.f = 3.14;
   s2.d = 0.00093;
}

Related Tutorials