How can I return back to the start of the programme if the user picks the option no? please help me.
#include <stdio.h>
#include <stdlib.h>
int main()
{
  int choice;
  printf("Are you done? 1 for Yes, 2 for No: ");
  scanf("%d",&choice);
  
  if (choice==1)
  {
      
  }
return 0;
}
 
    