Answers for "what is the return type of printf function"

0

what is the return type of printf function

#include <stdio.h>

int main(){
   char str[] = "THE SKY IS BLUE";

   printf("\nThe value returned by printf() for the above string is : %d", printf("%s", str));

   return 0;
}
Posted by: Guest on October-15-2021

Code answers related to "what is the return type of printf function"

Browse Popular Code Answers by Language