Original articles by Mark Leair, PGI Compiler Engineer
This is Part 1 of a series of articles:
| // main.c | |
| // https://www.youtube.com/watch?v=8nOi-0kBv2Y | |
| // gcc create_wave_file.c -o create_wave_file -lm | |
| // or clang create_wave_file.c -lm | |
| #include <math.h> | |
| #include <stdint.h> | |
| #include <string.h> | |
| #include <stdio.h> | |
Original articles by Mark Leair, PGI Compiler Engineer
This is Part 1 of a series of articles: