Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

On a scale from 0 to 1

Name: Anonymous 2015-09-28 22:32

How based are your arrays?

Name: Anonymous 2016-08-31 0:57

>>38
Lots of existing C code (even fully-conforming code designed to demonstrate proper usage of the standard library functions) would be broken by an implementation that passes array arguments by value.

For example, something like

char str[100];
scanf("%s", str);


is quite common. However, if arrays were passed by value, it would be necessary to instead use

char str[100];
scanf("%s", &str);

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List