Search found 3 matches

by software
Tue Aug 27, 2013 11:02 pm
Forum: Volume 7 (700-799)
Topic: 727 - Equation
Replies: 156
Views: 57092

727,uva problem

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 ...
by software
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 .
by software
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.

Go to advanced search