Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include <stdio.h>
int main ( ) {
int* opt[59];
static int opt0[] = { 0, 1, 2, 3, 4, 5, 6 };
opt[0] = opt0; /* ANSI-C standard way */
opt[1] = (int[]){1,7,11,0}; /* GCC supported extension */
printf("%d %d\n", opt[0][0], opt[1][0] );
return 0;
}
int opt[59][7] ={
{ 1, 7, 11 }, // compiler adds 4 zeros for you
{ 2, 7, 11, 12 }, // compiler adds 3 zeros for you
};