blob: 7490b4c0e6fcf8165a92c29b1d1eba3950d144fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <iostream>
struct Lightbulb {
int diameter;
int length;
char type[100];
char series;
};
int main() {
Lightbulb lb = { 5, 10, "Fluorescent", 'A' };
}
|