用户名或电子邮箱地址
密码
记住我
1. #include 2. using namespace std; 3. void e(int ); 4. 5. main() 6. { 7. int a; 8. a=3; 9. e(a); 10. } 11. 12. void e(int n) 13. { 14. if(n>0) 15. { 16. e(--n); 17. cout <<n<<” ”; 18. e(--n); 19. } 20. }
A、0 1 2 0 B、0 1 2 1 C、1 2 0 1 D、0 2 1 1 喵查答案:0 1 2 0
#include using namespace std; int Size(char*a){ return sizeof(a); } int main() { char a[10],b[10]; cout<<sizeof(a)<<' '<<Size(b)<<endl; return 0; }
char s[5]; s = "good"; cout<<s<<endl;
int *a = new int[10]; cout<<sizeof(a)<<’ ’<<sizeof(new int [8])<<endl;
struct node{ int x,y; struct node *p; } L[2]; main(){ L[0].x=1; L[0].y=2; L[1].x=3; L[1].y=4; L[0].p=&L[1];L[1].p=L; printf("%d%d\n",(L[0].p)->x,(L[1].p)->y); }