- 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 - 1.19
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/11 19.Point out the error in the following program. #include<stdio.h> #include<stdarg.h> void varfun(int n, ...); int main() { varfun(3, 7, -11.2, 0.66); return 0; } void ...
Một số hàm dùng sử lý chuỗi C++
Unzztitled.png 1061x352 81.8 KB
Poll: Kiểm tra kiến thức C - 1.18
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/11 18.Which header file should you include, if you are going to develop a function, which can accept variable number of arguments? A. varagrg.h B. stdlib.h C. stdio.h D. stdarg.h
Poll: Kiểm tra kiến thức C - 1.17
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/11 17.What is the output of the program? typedef struct data; { int x; sdata *b; }sdata; A. Error: Declaration missing ‘;’ B. Error: in typedef C. No error D. None of above ...
Ruby on rails. 8 Cách học tốt nhất
8 Cách tốt nhất để học Ruby on Rails Trong thời gian qua, tôi muốn chọn một ngôn ngữ để học và làm mới mình vì bấy lâu nay tôi chỉ dùng .NET và C#, những ngôn ngữ khác mà tôi đã từng học qua thì nay đã ít sử dụng và thật ra nó không khác với C# bao nhiêu (VB6, VB.NET , Delphi, C++, AS3, Java ...
Poll: Kiểm tra kiến thức C - 1.16
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/11 16.What will be the output of the program? #include<stdio.h> int main() { char c=48; int i, mask=01; for(i=1; i<=5; i++) { printf("%c", c|mask); ...
Poll: Kiểm tra kiến thức C - 1.15
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/11 15.The first argument to be supplied at command-line must always be count of total arguments. A. True B. False
Poll: Kiểm tra kiến thức C - 1.14
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/11 14.Which of the following statement is correct about the program? #include<stdio.h> int main() { FILE *fp; char ch; int i=1; fp = fopen("myfile.c", "r"); ...
Poll: Kiểm tra kiến thức C - 1.13
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/11 13.Bit fields CANNOT be used in union. A. True B. False
Poll: Kiểm tra kiến thức C - 1.12
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/11 12.What will be the output of the program ? #include<stdio.h> int main() { int i=4, j=8; printf("%d, %d, %d ", i|j&j|i, i|j&j|i, i^j); return 0; } A. 12, ...