Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Level 2 lesson 3 from grabage value

here it is showing to use correct specifier for character
by

1 Answer

sam5epi0l
Try this code:


#include <stdio.h>

int main() {

printf("Character Garbage value - %c\n");
printf("Double Garbage value - %lf\n");

return 0;
}

Login / Signup to Answer the Question.