#include <stdio.h> typedef char AlignedChar __attribute__ ((aligned (8))); AlignedChar test[16]={}; int main(void) { // your code goes here return 0; }
Standard input is empty
prog.c:4:1: error: alignment of array elements is greater than element size AlignedChar test[16]={}; ^
Standard output is empty