Problem Statement Print the following output: \ Input Format IN Output Format \

#include <stdio.h>

int main() {
    char c = '\\';
    printf("\\\\ Input Format %c Output Format \\.\\n", c);
    return 0;
}