- 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: Tư vấn mua máy tính
anh @ltd cho em nhờ diễn đàn tý. 2 hôm nay đau đầu vụ này ghê, chạy hết các diễn đàn để tham khảo mà chưa ra đâu với đâu Cho hỏi ở diễn đàn mình ai có kinh nghiệm dùng ASUS và MSI vào tư vấn giúp mình với. Mình có 2 options tham khảo là MSI GT72 vs ASUS G751. A. Asus G751 JT ...
Poll: Kiểm tra kiến thức C - 2.10
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/12 10.What will be the output of the program ? Bài này hay! #include<stdio.h> int main() { char *p; p="hello"; printf("%s ", *&*&p); return 0; } A. llo ...
Poll: Kiểm tra kiến thức C - 2.8
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/12 8.What will be the output of the program? #include<stdio.h> #define SQR(x)(x*x) int main() { int a, b=3; a = SQR(b+2); printf("%d ", a); return 0; } A. 25 ...
Poll: Kiểm tra kiến thức C - 2.7
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/12 7.How many times the program will print “IndiaBIX” ? #include<stdio.h> int main() { printf("IndiaBIX"); main(); return 0; } A. Infinite times B. 32767 times ...
Poll: Kiểm tra kiến thức C - 2.5
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/12 5.In the expression a=b=5 the order of Assignment is NOT decided by Associativity of operators A. True B. False
Poll: Kiểm tra kiến thức C - 2.4
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/12 4.What will be the output of the program? #include<stdio.h> int main() { int i=2; printf("%d, %d ", ++i, ++i); return 0; } A. 3, 4 B. 4, 3 C. 4, 4 D. Output ...
Poll: Kiểm tra kiến thức C - 2.3
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/12 3.Point out the error, if any in the program. #include<stdio.h> int main() { int P = 10; switch(P) { case 10: printf("Case 1"); case 20: ...
Poll: Kiểm tra kiến thức C - 2.2
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/12 2.Which of the following errors would be reported by the compiler on compiling the program given below? #include<stdio.h> int main() { int a = 5; switch(a) { case 1: ...
Poll: Kiểm tra kiến thức C - 2.1
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/12 1.How many times the while loop will get executed if a short int is 2 byte wide? #include<stdio.h> int main() { int j=1; while(j <= 255) { printf("%c %d ", j, ...
Poll: Kiểm tra kiến thức C - 1.21
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/111 20.va_list is an array that holds information needed by va_arg and va_end A. True B. False