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

Level 2 lesson 3 c programmng

here i have to used format specifier for character and double plzz help me to understand, in c programming course
by

1 Answer

sam5epi0l
Hi, try this:


#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.