Câu hỏi của Manh Doan

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 ...

Manh Doan viết 22:12 ngày 30/09/2018 chỉnh sửa

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; } ...

Manh Doan viết 19:31 ngày 30/09/2018 chỉnh sử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”);

Manh Doan viết 19:31 ngày 30/09/2018 chỉnh sửa
1