Skip to content
EMPS intranet

Back to top
Hi!   Hi!           Start main()

Try stepping through the code


  Value and type of last evaluated expression: Address of array element: Address of array elementx:  (none)

Your browser does not support the canvas element which will make some the features unavailable.

If you are using Internet Explorer within the University of Exeter try going to the Settings menu (probably the gear shape at the top right of this page), selecting "Compatibility View settings", unchecking "Display intranet sites in Compatibility View" and reloading this page.

Code

 Header...
// Demonstrate an array of writeable strings #define STRMAX 8 #define NPL 2 // Number of players
int main(){
  ...
» char names[NPL][STRMAX]={0}; » for ( int p=0;p<NPL; ++p) { » printf("Player %d, please enter your forename\n", p+1); » scanf("%s", names[p]); » printf("Thanks %s.\n", names[p]); } // Do stuff here... » return 0;
}
Memory

main(): for()

128
129
130
131
p = 0

main()

132
133
134
135
names[0] = '\0' '\0' '\0' '\0'
136
137
138
139
140
141
142
143
'\0' '\0' '\0' '\0' names[1] = '\0' '\0' '\0' '\0'
144
145
146
147
'\0' '\0' '\0' '\0'

NB: the actual memory address of each variable is the
address shown plus 4287505960 (0xFF8E2628).

Show Advanced options

.

Input was:

Sally
David

Show output (Before looking at the output, work out what you think it put should be and see if you are right.)

Output

Player 1, please enter your forename
Thanks Sally.
Player 2, please enter your forename
Thanks David.
                                                                                                                                                                                                                                                                       

Validate   Link-check © Copyright & disclaimer Share
Back to top