#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define password "Please enter your password"
int main(int arge, char *argv[])
(
char pass[100];
printf("Please enter your password\n\n");
scanf("is", pass);
if ( stromp(pass, passsword) == 0 )
(
printf("Congrats!! Correct Pass\n\n");
{ else}
printf("Wrong Pass\n\n");
)
system("PAUSE");
return 0;
)
So I'm not sure what's wrong with it and I've been completely stuck on it for two days now, Whenever I try to compile it I get this:
prog.c:12:3: error: expected declaration specifiers or '...' before 'printf'
printf("Please enter your password\n\n");
^
prog.c:13:3: error: expected declaration specifiers or '...' before 'scanf'
scanf("is", pass);
^
prog.c:14:3: error: expected declaration specifiers or '...' before 'if'
if ( stromp(pass, passsword) == 0 )
^
prog.c:24:4: error: expected declaration specifiers or '...' before 'return'
return 0;
^
prog.c:7:5: error: 'main' declared as function returning a function
int main(int arge, char *argv[])
^
prog.c: In function 'main':
prog.c:25:1: error: expected '{' at end of input
)
^
prog.c:25:1: warning: control reaches end of non-void function [-Wreturn-type]
)
^
Can you show me how it's supposed to be?