正在加载图片...
*int test(int c int d) Exiting local scope Contents * void main( (line 4 variable type int int c s: (line 5) string si variable type string Exiting function 'main scope. Contents: <empty> s =Whello' Exiting local scope c= test(4, 5)i Contents: <empty> Exiting function ' test Print(c) scope. Contents Print(s)i a:(1ine13) variable, type int 3 variable type int int test (int a int b Exiting global scope Contents main:(line 3) return a t b function test: (line 13) function int test(int c, int d);  void main() {  int c;  string s;  s = "hello";  c = test(4, 5);  Print(c);  Print(s);  }  int test(int a, int b) {  return a + b;  }  Exiting local scope. Contents: c: (line 4) variable , type int s: (line 5) variable , type string  Exiting function 'main' scope. Contents: <empty>  Exiting local scope. Contents: <empty>  Exiting function 'test' scope. Contents: a: (line 13) variable , type int b: (line 13) variable , type int  Exiting global scope. Contents: main: (line 3) function test: (line 13) function
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有