I have tried;
void *malloc(unsigned int); struct deneme { const int a = 15; const int b = 16; }; int main(int argc, const char *argv[]) { struct
Interesting I found this C99 way is working in clang but not in gcc
int main(int argc, const char *argv[]) { struct deneme *pmydeneme = malloc(sizeof(struct deneme)); *pmydeneme = (struct deneme) {15, 20}; return 0; }