Last active
August 29, 2015 14:03
-
-
Save rainbyte/9383357f4507c907b851 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
struct bios_info { | |
char *date; | |
char *partNumber; | |
}; | |
struct bus_info { | |
char *type; | |
int width; | |
}; | |
struct memory_info { | |
char *type; | |
int clock; | |
int size; | |
double bandwidth; | |
}; | |
struct hardware_info { | |
int coreClock; | |
struct bios_info *bios; | |
struct bus_info *bus; | |
struct memory_info *memory; | |
}; | |
struct gpu_info { | |
struct hardware_info *hardware; | |
}; | |
int main(void) | |
{ | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment