here is my problem
main.c:17: error: parse error before '{' token
main.c:27: error: parse error before string constant

#include <stdio.h>
#include <c.h>
#include <math.h>
#include <ctype.h>
#include <time.h>
#include <stdlib.h>
#include <string.h>

#define kmll 200
#define Kzll 0

int myint,any,go;
int main (int argc, const char * argv[]) {

(myint, any, go) = 0 ;

// here parse error
do printf(" helo guys plese incert a number") {

if any = 0 {  

scanf("%c %c",myint,any);   

else 

printf(" next code"); } 

// here parse error
printf(" %d + %d = %d ", myint, any,(any + myint));

else printf(" uno");

return 0; }

a quick reply to the problem would be helpfull

Recommended Answers

All 3 Replies

need () around if:
if ( any == 0 )

also, you want == not =

try concentrating on { } brackets and matching if-else statements

still doesent work please help

#include <stdio.h>
#include <c.h>
#include <math.h>
#include <ctype.h>
#include <time.h>
#include <stdlib.h>
#include <string.h>

#define kmll 200
#define Kzll 0

int myint,any,go;
int main (int argc, const char * argv[]) {

(myint, any, go) == 0 ;



// stupid error is some where under here ( parse error befor '{' token ) 
//help it should work but doesent
/*dang it */ do printf(" helo guys plese incert a number "); {


while any = 0 {  

scanf("%c %c",myint,any);   

else 

printf(" next code"); } 


// here 2 im in need of help (parse error befor string constant) 
// i don't see the problem help me
printf(" %d + %d == %d ", myint, any,(any + myint)); 


else printf(" uno"); }

return 0; }
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.