+ 1
Can anyone explain this code
#include <stdio.h> int func(){ return (printf("hello world")); } int main() { printf("%d\n",sizeof(func)); return 0; }
6 Respuestas
#include <stdio.h> int func(){ return (printf("hello world")); } int main() { printf("%d\n",sizeof(func)); return 0; }