Tell the output
void main()
{
int a = printf ("CppBuzz.com");
printf("%d", a);
}
Answers
Answered by
2
Input :
void main()
{
int a = printf ("CppBuzz.com");
printf("%d", a);
}
Output :
CppBuzz.com11
Explanation :
printf() prints and returns the number of characters it has printed that is why its output is CppBuzz.com11, 11 is returned by printf() function.
Answered by
3
Answer:
(C) void main(int argc , char ** argv) ... What should be the output: int main() { int a = 10/3; printf("%d",a); return 0; } ... int main() { int a = printf ("CppBuzz.com"); printf("%d", a); return 0; }.
Similar questions