Problem ID:727
Here is my code:
//polish notation
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
typedef struct node
{
char data;
struct node *next;
struct node *prev;
}node;
char a[1000][1000];
node* push(node *head,char ch)
{
node *cursor=head;
node *new_node=(node *)malloc(sizeof ...
Search found 3 matches
- Tue Aug 27, 2013 11:02 pm
- Forum: Volume 7 (700-799)
- Topic: 727 - Equation
- Replies: 156
- Views: 57092
- Tue Aug 27, 2013 11:00 pm
- Forum: Volume 7 (700-799)
- Topic: 727 - Equation
- Replies: 156
- Views: 57092
727,uva problem
Problem ID:727
Here is my code:
I can not understand why my code get RE .Please help me.
I did not get any reply though I sent another message .
Here is my code:
I can not understand why my code get RE .Please help me.
I did not get any reply though I sent another message .
- Tue Aug 27, 2013 7:56 pm
- Forum: Volume 7 (700-799)
- Topic: 727 - Equation
- Replies: 156
- Views: 57092
education(runtime error)
Problem no:727
I got RE error but I can not what the problem is in my code.Please help me.
I got RE error but I can not what the problem is in my code.Please help me.