- 1 Cài đặt phần mềm cần thiết cho học lập trình web
- 2 Tự Học HTML Cơ Bản Online Miễn Phí Từ A đến Z
- 3 Seo website dành cho dân IT
- 4 REACT NATIVE
- 5 sdfdsf
- 6 Lập trình di động với React Native
- 7 Vue.js
- 8 Kiếm thức cơ bản HTML CSS
- 9 So sánh count() và sizeof() 2 phần tử đếm mảng
- 10 Toán tử và biểu thức của php
Poll: Kiểm tra kiến thức C - 4.01
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/14 1.How many times “admin_DepTrai” is get printed? #include<stdio.h> int main() { int x; for(x=-1; x<=10; x++) { if(x < 5) continue; else ...
Poll: Kiểm tra kiến thức C - 3.07
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/13 7. Point out the error in the program? #include<stdio.h> int main() { struct emp { char name[20]; float sal; }; struct emp e[10]; int i; ...
Thế nào là lập trình hướng đối tượng OOP?
vi.wikipedia.org Lập trình hướng đối tượng Lập trình hướng đối tượng (tiếng Anh: Object-oriented programming, viết tắt: OOP) là một mẫu hình lập trình dựa trên khái niệm "công nghệ đối tượng", mà trong đó, đối tượng chứa đựng các dữ liệu, trên các trường, thường ...
Help: Màn hình xanh Ntoskrnl.exe+14f1a0
Mấy hôm nay mình đau đầu với cái laptop quá. Mình dùng 2 ngày mà lỗi màn hinh xanh tới 6 lần. Check bằng phần mềm blue screen báo lỗi do driver_power_state_failure ntoskrnl.exe+14f1a0 Tìm thông tin trên google không thấy có lỗi này cụ thể Bạn nào có kinh nghiệm vào giúp mình với
Poll: Kiểm tra kiến thức C - 3.06
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/13 6.What will be the output of the program in Turbo-C ? #include<stdio.h> int main() { int arr[5], i=-1, z; while(i<5) arr[i]=++i; for(i=0; i<5; i++) ...
Poll: Kiểm tra kiến thức C - 3.05
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/13 5.What does the following declaration mean? int (*ptr)[10]; A. ptr is array of pointers to 10 integers B. ptr is a pointer to an array of 10 integers C. ptr is an array of 10 ...
Poll: Kiểm tra kiến thức C - 3.04
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/13 4.Which of the following statements correct about k used in the below statement? char ****k; A. k is a pointer to a pointer to a pointer to a char B. k is a pointer to a pointer to a ...
Poll: Kiểm tra kiến thức C - 3.03
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/13 3.What will be the output of the program assuming that the array begins at the location 1002 and size of an integer is 4 bytes? #include<stdio.h> int main() { int a[3][4] = { 1, ...
Poll: Kiểm tra kiến thức C - 3.02
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/13 2.What will be the output of the program? #include<stdio.h> #define PRINT(i) printf("%d,",i) int main() { int x=2, y=3, z=4; PRINT(x); PRINT(y); PRINT(z); return ...
Poll: Kiểm tra kiến thức C - 3.01
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/13 1.Which statement will you add in the following program to work it correctly? #include<stdio.h> int main() { printf("%f ", log(36.0)); return 0; } A. include (conio.h) ...