Simple printf demo : Console Output Char « Console « C / ANSI-C






Simple printf demo

  
#include <stdio.h>

int main(void)
{
  printf("a");
  printf("b");
  printf("c");

  return 0;
}
           
       








Related examples in the same category

1.Output the char's ASCII code
2.Use getchar() to read user choices
3.Use getche() to receive user selection