Computer Science, asked by iqbalalamrinku4, 9 months ago

What will be the output of the following C code?
1.
#include <stdio.h>
2.
void food
int maino
3.
{
5.
void foo(int);
foo(1)
6.
7.
return 0;
8.
CO
void foo(int i)
10.
11.
printf("2")
12​

Answers

Answered by kulkarniujwal
0

Answer:

What will be the output of the following C code?

1.

#include <stdio.h>

2.

void food

int maino

3.

{

5.

void foo(int);

foo(1)

6.

7.

return 0;

8.

CO

void foo(int i)

10.

11.

printf("2")

12

Similar questions