#include <stdio.h>

int main(void) 
{
    printf("\tEste texto se muestra tabulado.");
    printf("\nEste texto se muestra en otra linea.\n");
    printf("\"Este texto se muestra entre comillas doble\"");
    printf ("\n\tEsta es la letra \'A\'");
    
    /*Hacemos una pausa hasta que el usuario pulse Intro*/
    fflush(stdin);
    printf("\nPulse Intro para finalizar...");
    getchar();
    
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: