Computer Science, asked by gopibojja44124, 6 hours ago

6) Find the output of the following program
#include <stdio.h>
G(int x)
{
static int y = 4;
y += -1;
return (y + x);
}
F(int x)
{
int y;
y = G(x);
return (y);
}
int maino
{
int x = 6, y = 8, count;
for (count = 1; count <= 2; ++count)
{
y += F(x) + G(x);
printf ("%d", y);​

Answers

Answered by udyangaur
1

Answer:

4ede4de4dr4drdc4rcr4frf4

Similar questions