Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

what its start: mean? Is it a funtion or some thing else?

0 votes
asked Oct 16, 2018 by Muhammad Abubakar


#include <iostream>

using namespace std;

int
main ()
{
start:
  int namnff = 23;
  cout << "Hello World" << namnff;

  return 0;
}

1 Answer

+1 vote
answered Oct 16, 2018 by anonymous
It's called a 'label'. Yu can refer to it with goto statement. For example: goto start;

One can write labels in front of any statement in a program.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...