Posts by qvvert • 23 points
2 posts
-
0
votes1
answer297
viewsQ: C CHAR reading that works with %s but not with %c, why? And how does INCREMENT work on a pointer?
I hosted the code complete in the Pastebin: https://pastebin.com/feKaxAiz. It is a matrix where it is possible to perform the SUMMING UP or AVERAGE of the elements above the MAIN DIAGONAL. It is…
-
2
votes1
answer401
viewsQ: Is it possible to access the address of a C function?
It is possible to access the address, literally, of some function and C and also store in some variable of the main(), etc..? int f1() { }; int main() { int *ponteiro; ponteiro = &f1;…