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

Lesson 2 level 3 c programming

#include <stdio.h>

int main() {

printf("Character Garbage value - ____\n");
printf("Double Garbage value - ____\n");

return 0;
}
by

2 Answers

jamesclarkson
133512
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.