Originally posted by 12520527
View Post
Announcement
Collapse
No announcement yet.
Vấn đề về truyền tham biến, tham trị là mảng
Collapse
X
-
Originally posted by 14520234 View PostCác anh chị và các bạn cho mình hỏi có cách nào truyền mảng vào hàm mà không làm thay đổi giá trị của mảng sau khi xử lí trong hàm đó ko? xin cảm ơn
Code:#include <stdio.h> void f( const int a[]) { a[2]=0; } main() { int a[4]={1,2,3,4}; for(int i=0; i<4; ++i) printf("%d", a[i]); }
Comment
Comment