Answers for "how to print char in c"

C
2

c print char

char bob = 'X';
printf("%c", bob);
putchar(bob);
Posted by: Guest on April-02-2021
6

int to char in c

c = i +'0';
Posted by: Guest on October-20-2020
1

printf in c

#include <stdio.h>

int printf(const char *format, ...);

int main(void)
{
  int nb = 20;
 
  printf("Hello World !\n");
  printf("%d\n", nb);
  printf("%s/%d\n", "Nice", 20);
  return (0);
}

/// output :
///
///	Hello World !
///	20
///	Nice/20
///
Posted by: Guest on March-03-2020
1

how to make a character in c

ch = 66;
Posted by: Guest on January-06-2020

Code answers related to "C"

Browse Popular Code Answers by Language