I was skeptical of Stéphane’s answer, however it is possible to abuse $#:
$ set `seq 101`
$ IFS=0
$ echoprintf '%s\n' $#
1
1
$ printf '%s\n' "$#"
101
or $?:
$ IFS=0
$ awk 'BEGIN {exit 101}'
$ echo $status=$?
1
$ printf '%s\n' $status
1
1
$ printf '%s\n' "$status"
101
These are contrived examples, but the potential does exist.