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...
#define N 24 // // Flawed attempt to read in an integer followed by some text. //
int main(){
  ...
» char line[N]; » int value; » printf("Please enter the integer value\n"); » scanf("%d", &value); » printf("Now please type in the text string, spaces are allowed!\n"); » if (fgets(line, N, stdin)!=NULL) { // Chop off final '\n'; » int end=strlen(line)-1; » if (lineend=='\n') lineend='\0'; } » printf("The value is %d, the text is >%s<\n", value, line); » return 0;
}
Memory

main()

132
133
134
135
value = 200
136
137
138
139
140
141
142
143
?
?
?
?
line = '\0' 'P' 'u' ' '
144
145
146
147
148
149
150
151
' ' '\0' '\0' '\0' ' ' ' ' '`' ' '
152
153
154
155
156
157
158
159
' ' ' ' ' ' ' ' ' ' ' ' ' ' ' '
160
161
162
163
' ' '\0' '\0' '\0'

main(): :if {...}

136
137
138
139
end = 0

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

Show Advanced options

.

Input was:

12
My name is Earl

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

Output

Please enter the integer value
Now please type in the text string, spaces are allowed!
The value is 12, the text is ><
                                                                                                                                                                                                                                                                       

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