Definitely not. In old C you can use functions without providing a declaration, in which case a return value of ‘int’ is assumed. So let’s say you forget to include stdlib.h but you use malloc. The complier then assumes there is a function ‘int malloc()’ somewhere. Now you cast that returned int into your pointer type and use it. Great. You just traded a compile time error in for a runtime error. Don’t cast malloc.
The Big Programming Thread - Page 865
Forum Index > General Forum |
Thread Rules 1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution. 2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20) 3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible. 4. Use [code] tags to format code blocks. | ||
Biolunar
Germany224 Posts
Definitely not. In old C you can use functions without providing a declaration, in which case a return value of ‘int’ is assumed. So let’s say you forget to include stdlib.h but you use malloc. The complier then assumes there is a function ‘int malloc()’ somewhere. Now you cast that returned int into your pointer type and use it. Great. You just traded a compile time error in for a runtime error. Don’t cast malloc. | ||
BluzMan
Russian Federation4235 Posts
On March 29 2017 23:46 Biolunar wrote: Definitely not. In old C you can use functions without providing a declaration, in which case a return value of ‘int’ is assumed. So let’s say you forget to include stdlib.h but you use malloc. The complier then assumes there is a function ‘int malloc()’ somewhere. Now you cast that returned int into your pointer type and use it. Great. You just traded a compile time error in for a runtime error. Don’t cast malloc. Ermm, I'm curious how the linker would assemble the executable without a function definition? | ||
Cyx.
Canada806 Posts
On March 30 2017 04:53 BluzMan wrote: Ermm, I'm curious how the linker would assemble the executable without a function definition? It has a definition for standard library functions since it links against the stdlib by default. Most compilers will complain about 'implicit declaration of malloc' or something like that but they'll generally allow it unless you have warnings way up. Although I don't see how this trades a compile-time error for a runtime error... either way, you just get a warning about the implicit definition, with maybe an additional warning about casting a pointer to integer. e: also, I've never seen casting malloc recommended in C, it's required if you use malloc in C++ (which you just shouldn't do) but every C programmer I know says 'don't cast malloc'. | ||
TMG26
Portugal2017 Posts
On March 30 2017 05:34 Cyx. wrote: It has a definition for standard library functions since it links against the stdlib by default. Most compilers will complain about 'implicit declaration of malloc' or something like that but they'll generally allow it unless you have warnings way up. Although I don't see how this trades a compile-time error for a runtime error... either way, you just get a warning about the implicit definition, with maybe an additional warning about casting a pointer to integer. e: also, I've never seen casting malloc recommended in C, it's required if you use malloc in C++ (which you just shouldn't do) but every C programmer I know says 'don't cast malloc'. I assumed it was recommend in old standards, because in the book "The C Programming Language" (K&R) they cast malloc. | ||
Manit0u
Poland17187 Posts
Tables
What I need
Basically, I need all C's whose related Bs are all in A's related Bs (for a single A) - a matching subset if you will. Any idea how I should construct this query? | ||
berated-
United States1134 Posts
On March 30 2017 19:34 Manit0u wrote: PGSQL question: Tables
What I need
Basically, I need all C's whose related Bs are all in A's related Bs (for a single A) - a matching subset if you will. Any idea how I should construct this query? Is that not just distinct c from c join b join a, through the intermediate tables? Is it too large to do so? Or just intermediate join intermediate join c. | ||
Manit0u
Poland17187 Posts
On March 30 2017 19:54 berated- wrote: Is that not just distinct c from c join b join a, through the intermediate tables? Is it too large to do so? Or just intermediate join intermediate join c. I think I've found a solution:
Edit: On another note... ![]() | ||
Nesserev
Belgium2760 Posts
| ||
Acrofales
Spain17844 Posts
https://www.reddit.com/r/programming/comments/buosj/add_a_number_to_another_number_in_javascript_img/ | ||
meadbert
United States681 Posts
On March 30 2017 05:34 Cyx. wrote: It has a definition for standard library functions since it links against the stdlib by default. Most compilers will complain about 'implicit declaration of malloc' or something like that but they'll generally allow it unless you have warnings way up. Although I don't see how this trades a compile-time error for a runtime error... either way, you just get a warning about the implicit definition, with maybe an additional warning about casting a pointer to integer. e: also, I've never seen casting malloc recommended in C, it's required if you use malloc in C++ (which you just shouldn't do) but every C programmer I know says 'don't cast malloc'. Regarding casting malloc. I use gcc 5.3.1 with -Wall and it will still warn if I do not cast malloc. Also I have seen this bug a few times that can arise from not casting malloc. int *heap = malloc(size*sizeof(int)) - 1; // <--- THIS IS A BUG!!! You might wonder why on earth someone has added -1 and it has to do with a performance optimization when using binary heaps. If you use a 0 based array then your children are 2*i + 1 and 2*i + 2 while your parent is (i - 1)/2; Note that for speed you would want to be doing left shifts and right shifts rather than multiplying and dividing. I believe in some architectures shifting is free although I do not have the details. It may be those are not used anymore, but in any case I have seen this particular bug show up more than once and it is very common to see this trick used in general. The problem is that finding a child or parent will always require and addition or subtraction operation which is NOT free. If you use 1 based arrays then your children are 2*i and 2*i+1 and your parent is i/2. If you use shifts again then only a third of the time do you need the addition so your heap is sped up by a lot on certain architectures. For this reason I see people move their heap pointer one "spot" to the left and then index by 1 so heap[1] is the root of the heap. The problem is in the buggy line above they meant to shift left by 1 integer, but instead they shifted left by 1 byte because malloc returned a void* so instead they will end up reading and writing past the end of the array when reading and writing the last integer in the array. Correct ways to use that hack would be: int *heap = malloc(size*sizeof(int)); heap--; or int *heap = ((int*)malloc(size*sizeof(int))) - 1; or int *heap = malloc(size*sizeof(int)) - sizeof(int); The point is you need to be careful when adding or subtracting from a value returned by malloc. | ||
Hanh
146 Posts
| ||
Biolunar
Germany224 Posts
On March 30 2017 23:31 meadbert wrote: Regarding casting malloc. I use gcc 5.3.1 with -Wall and it will still warn if I do not cast malloc. This is hard for me to believe. void* -> T* is an implicit lossless conversion that should compile without warning. Did you compile it as C++? Does not warn me with -Wall -Wextra on gcc nor on clang with -Weverything. On March 30 2017 23:31 meadbert wrote: int *heap = malloc(size*sizeof(int)) - 1; // <--- THIS IS A BUG!!! Yes that’s a bug, because it does not compile ![]() | ||
Acrofales
Spain17844 Posts
I have what I know to be quite a shitty dataset, but it's the only dataset I can find that might remotely be used to model what I want to model. So I program my feature extraction part (took about a week to extract the features that my hypothesis says should explain what I want), and release some out-of-the-box regression models on a simple train/test split. Utterly terrible results. I have now spent the last 2 days trying to tune the algorithms, and anything I do, it would literally be better to just always expect the mean value (of my data set) rather than use the regression models that I have fit. So now I have a bit of an awkward situation: I know the data set is garbage, but I thought it would allow me to at least do enough of a validation to send my idea to a small conference. How the hell do I write a paper with no results... basically saying "I have this idea, but the only available data set is garbage. I need to collect more data to be able to test the hypothesis. Please accept this paper anyway, because the idea is good. Right?" Rant out. If anybody has good ideas, I'm not an ML expert. I'm a proficient data miner. I tried ridge regression, lasso (or rather, I just used elastic net and varied the coefficient) and random forest regression. My data set is tiny (95 samples) and very noisy. | ||
spinesheath
Germany8679 Posts
| ||
meadbert
United States681 Posts
On March 31 2017 02:15 Biolunar wrote: This is hard for me to believe. void* -> T* is an implicit lossless conversion that should compile without warning. Did you compile it as C++? Does not warn me with -Wall -Wextra on gcc nor on clang with -Weverything. Yes that’s a bug, because it does not compile ![]() I just tested this code:
I used -Wall and -Wextra. I got no warnings. So it appears that the cast from void* to int* does not generate a warning, but also the pointer subtraction on void* worked just fine with not so much as a warning. EDIT: I just did some research and pointer addition on void* is illegal in both C and C++, but GCC apparently allows for it which explains the results that I saw. | ||
Biolunar
Germany224 Posts
On March 31 2017 04:10 meadbert wrote: I just tested this code:
I used -Wall and -Wextra. I got no warnings. So it appears that the cast from void* to int* does not generate a warning, but also the pointer subtraction on void* worked just fine with not so much as a warning. EDIT: I just did some research and pointer addition on void* is illegal in both C and C++, but GCC apparently allows for it which explains the results that I saw. Hmm you are right, gcc does not complain by default. man gcc -Wpointer-arith Warn about anything that depends on the "size of" a function type or of "void". GNU C assigns these types a size of 1, for convenience in calculations with "void *" pointers and pointers to functions. In C++, warn also when an arithmetic operation involves "NULL". This warning is also enabled by -Wpedantic. I always use -pedantic-errors, so that all warnings demanded by strict ISO C are issued as an error. | ||
Deleted User 3420
24492 Posts
| ||
Manit0u
Poland17187 Posts
On March 31 2017 05:15 travis wrote: I have a feeling this thread is gonna really blow up over the summer when I take Intro to Algorithms. Summer is not for school... | ||
Deleted User 3420
24492 Posts
| ||
WarSame
Canada1950 Posts
int (*getFunc())(int, int) { … }, which is a function that returns a pointer to a function? I understand that it returns an int, but I don't get what is happening in the first set of brackets. | ||
| ||