Social Sciences, asked by Anonymous, 11 months ago

Tell the output

void main()
{
int a = printf ("CppBuzz.com");
printf("%d", a);
}​

Answers

Answered by GhaintMunda45
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 d687cyoyo
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