#include <stdio.h> char a[100]; int main(void) { printf("sizeof(a) = %d\n", sizeof(a); printf("number of bytes in array = %d\n", sizeof(a[0]) * 100); return(0); }
|
ECS 36A, Programming & Problem Solving Version of April 2, 2024 at 12:13PM
|
You can get the raw source code here. |