include

int main()

  int pv, cv, temp;
  temp = 15;
  pv = 1;
  printf("%d\n" ,pv);
  cv = 1
  printf("%dn" ,cv);
  while (cv < 10)
          cv = temp; temp =pv; pv = cv;
          printf("%d\n ,pv);
          printf("%d\n ,cv);
  geche();
  return 0;

Recommended Answers

All 2 Replies

What is geche()?

commented: A typo? +15
  1. That's not pseudocode.
  2. I don't take orders.
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.