error message is seen on the goto statement. did I miss library ?
this is a part of script.
#include <cstdlib>
#include <iostream>
#include <conio.h>
using namespace std;
int main() {
int a = 0, b = 0, c = 0;
cin >> a >> b >> c; //assume error checking etc
start:
if(a > 6) goto a;
else if(b < 2) goto b;
goto 5;
l1:
goto start;