Answers for "char print c"

C
2

c print sizeof char

char b = 'b';
printf("the size of b is %d",sizeof(b));
Posted by: Guest on December-25-2020
1

printf in c

#include <stdio.h>

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

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

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

printf n characters c

// Only 5 characters printed
const char * mystr = "This string is definitely longer than what we want to print.";
printf("Here are first 5 chars only: %.5sn", mystr);
Posted by: Guest on June-19-2020

Code answers related to "C"

Browse Popular Code Answers by Language