Originally posted by 10520541
View Post
Announcement
Collapse
No announcement yet.
cho em hỏi về Visual Studio 2012
Collapse
X
-
Originally posted by 12520136 View Postanh code cho em 1 chương trình đơn giản em chạy thử đc không? 3 ngày nay code xong mà không chạy được :hellboy:
Code:#include "stdio.h" #include "string.h" void main(){ char str[20]; printf("What's your name?\n"); fflush(stdin); gets(str); printf("Hi %s - Wellcome To UIT ^_^ \n",str); }
Comment
-
học cách sử dụng visual sao cho code cho thành thạo. ngoài ra còn học cách tìm và sửa lỗi, học cách debug nữa. rất cần thiết sau này làm bài lớn, đồ án!-----------------------------
Mai Văn Khải
Software Engineering, University Information of Technology
a07d26eb5cbc98f77b36a461eb629456
Comment
-
tạo một empty project rồi dán đoạn code này vào. chú ý phòng cách viết code.
#include <stdio.h>
#include <conio.h>
int main()
{
char* a=new char[20];
a="Hello world";
printf(a);
getch();
}-----------------------------
Mai Văn Khải
Software Engineering, University Information of Technology
a07d26eb5cbc98f77b36a461eb629456
Comment
-
Originally posted by 10520541 View PostĐây, Code đại mấy dòng, thử xem :sogood:
Code:#include "stdio.h" #include "string.h" void main(){ char str[20]; printf("What's your name?\n"); fflush(stdin); gets(str); printf("Hi %s - Wellcome To UIT ^_^ \n",str); }
p/s: code của anh không dừng để xem kết quả rùi ^^"Measuring programming progress by lines of code is like measuring aircraft building progress by weight." - Bill Gates
Comment
-
Comment