Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~188 People Reached
Favorite Forums
Favorite Tags
c x 2
Member Avatar for larry12720

I created a function to compare string value with spaces It gives me error: warning: passing arg 1 of `strcmp' from incompatible pointer type and passing arg 2 of `strcmp' makes pointer from integer without a cast [code] char *operand(node *pt) { while(strcmp(pt->next, ' ')!=0) { strcpy(operand, pt->item); operand(pt->next); } …

Member Avatar for abhikkumarbasu
0
135
Member Avatar for larry12720

keep on getting this error after I put my input file, the program compiles but when I try to use it it gave me Core segmentation error. I guess there is something wrong with the memory. plz help Goal: My program should take input string from a file and do …

0
53