“C Zmienna statyczna” Kod odpowiedzi

c Zmienne statyczne

#include<stdio.h>
int fun()
{
  static int count = 0;
  count++;
  return count;
}
  
int main()
{
  printf("%d ", fun()); // prints 1
  printf("%d ", fun()); // prints 2
  return 0;
}
Dark Dugong

C Zmienna statyczna

static int i;
SAMER SAEID

c Zmienne statyczne

int fun(int i);
int main()
{
	int i, j;
	for(i=0;i<=5;i++)
	{
		j = fun(i);
	}
	printf("%d", j);	
}
fun(int i)
{
	static int count = 0;
	count = count + 1;
	return count;
}
Voleti Nagendra kumar

Odpowiedzi podobne do “C Zmienna statyczna”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu