ผมกำลังจะเขียนโปรแกรมปลดลอกด้วย password แต่มันขึ้น Error ตลอดเลย
#include <stdio.h>
main(){
char input,password[9];
password="123456"
a:printf("Enter Password:");
scanf("%s",input);
if (input==password)
break;
else
goto a;
printf("\t\t\tComplete\n");
printf("Running....");
}
มัน [Error] invalid array assignment
Program C ผมผิตตรงไหนเหรอครับช่วยหน่อย (Dev c++)
#include <stdio.h>
main(){
char input,password[9];
password="123456"
a:printf("Enter Password:");
scanf("%s",input);
if (input==password)
break;
else
goto a;
printf("\t\t\tComplete\n");
printf("Running....");
}
มัน [Error] invalid array assignment