Posts by Dracalbus • 113 points
1 post
-
11
votes3
answers3123
viewsQ: format ľ%d' expects argument of type ěint', but argument 2 has type ěchar *' - What is it? How to tidy up?
Code: #include <stdio.h> int main(void) { char caractere, *caractere_ptr = &caractere; printf("Caractere: foi alocado %zu byte\n", sizeof(caractere)); printf("Endereço: %d",…