- 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
Ai sửa hộ lỗi giúp mình với
#include <stdio.h> #include <string.h> #include <stdlib.h> #include <conio.h> struct sinhvien { char name [50] ; char masv [50]; }; void nhap(struct sinhvien *a) { printf("nhap ten sinh vien "); fflush(stdin); gets(a->name); printf("nhap masv "); fflush(stdin); g ...
câu hỏi phỏng vấn lập trình nhúng
Do you know stack? Which one will be allocated in stack? (variables below) int a=5; int b[5]; void elloh(char *c, char *d) { char e[5]; char g=NULL; g = (char ) malloc(10); g = “hello hello”; printf("%d", sizeof(g)); printf("%d", sizeof(*g)); } void f(char *a, char *b) { b=a; } ...
Cùng giải thích bài này nào các bạn
Do you think it works? If not, what is problem? int month=5; if (month=1) printf(“January”); else printf(“Not January”);