Q:

C Program to print character without using format specifiers

0

C Program to print character without using format specifiers

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <stdio.h>

int main()
{
    printf("\x41"); printf("\n");
    printf("\x42"); printf("\n");
    printf("\x43"); printf("\n");
    printf("\x44"); printf("\n");
    return 0;
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now