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

I need an answer for level 2 lesson 3

it is showing that your using wrong character type.
by

1 Answer

sam5epi0l
Here you go:

#include <stdio.h>

int main() {

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

return 0;
}

Let me know if it stills shows you an error.

Login / Signup to Answer the Question.