+ 1
what will you get after executing this code?
#include<stdio.h> int main() { int c; c = printf("Hello"); printf("%d", c); return 0; }
1 ответ
+ 4
printf() returns the count of characters.
Hello5
#include<stdio.h> int main() { int c; c = printf("Hello"); printf("%d", c); return 0; }