This is my Code C++ for my assignment. Please help me to convert it to C code. Thank you!

#include<iostream>
using namespace std;
#define N 10

int main()
{
    int array[N],p,q;
    for(int i=0;i<N;i++)
      array[i]=i;
    cout<<"For instance, given elements are ";
    for(int i=0;i<N;i++)
      cout<<array[i];
    cout<<endl;
    int r=0;
    while(cin>>p)
    {
     cin>>q;
     if(p>=0 && p<N)
   {
    for(int i=0;i<N;i++)
     if(array[i]==p)
       array[i]=q;
      cout<<p<<" "<<q<<"  "<<r++<<"     ";
      for(int i=0;i<N;i++)
        cout<<array[i];
      cout<<"\n";
   }
  }
}

This conversion doesn't seem too onerous. But you must show effort unless this is a requist for paid work.

Read https://www.daniweb.com/welcome/rules

Do provide evidence of having done some work yourself if posting questions from school or work assignments

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.