+ 2
Why the output is 264?
#include <stdio.h> int main() { int x=5; x=printf("\n %d",x*x+1); printf ("%d",x); return 0; } https://code.sololearn.com/coWkZs9oGD61/?ref=app
3 Respostas
+ 7
1st printf() prints 26 and second print() prints 4, because printf returns the no of character printed
+ 2
correct
0
If answer is 26, then what's about 2nd printf() ?
/* printf("%d",x); */
Friends.. ! Just go and run this code again