what will you get after executing this code? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

what will you get after executing this code?

#include<stdio.h>  int main() {  int c;  c = printf("Hello");  printf("%d", c);  return 0;   }

27th Jun 2018, 11:39 AM
SOUMITRA MANDAL
SOUMITRA MANDAL - avatar
1 Answer
+ 4
printf() returns the count of characters. Hello5
27th Jun 2018, 11:41 AM
Toni Isotalo
Toni Isotalo - avatar