DEBSOURCES
Skip Quicknav
sources / coccinelle / 1.3.0.deb-1 / tests / array.c
1234567891011
#include <stdio.h> void main(int i) { float x[] = { 0.1, 0.2, 0.3}; int y; y = sizeof(x) / sizeof(float); printf ("size array = %d\n", y); }