Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
60% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
~7K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Tags

10 Posted Topics

Member Avatar for abrarsyed

hi, i m new to programming and i m trying to create a setup and deployment package for database application. after sucessfully creating setup, when i install it on my system, i m getting a error. i changed the permissions of the installed application folder, and it workd fine. is …

Member Avatar for abrarsyed
0
187
Member Avatar for abrarsyed

hello frends, i m havig a problem with the deletion of node int the tree plz help me to get my code debugged void delete_node(struct node *temp,int data) { struct node *temp2=NULL,*temp3; if(temp->data==data&&temp->left==NULL&&temp->right==NULL) { temp=NULL; } else { while(temp->data!=data) { printf("\n temp = %d",temp->data); temp2=temp; if(temp->data<data) { temp=temp->right; } else …

Member Avatar for Despairy
0
179
Member Avatar for Hani1991

islam and logic is really a very good topic to discuss about, as i m a muslim and i truly beleive that islam is the only logical religion. one of the proof in this regard lies in the name of islam. islam means to follow/to surrender. first thing that all …

Member Avatar for Reverend Jim
-4
1K
Member Avatar for ashish karna

You can convert the equation into postfix or prefix format n then solve the equation.

Member Avatar for Sokurenko
-1
142
Member Avatar for firdousahmad

Firdous you should look for some better sorting algorithms or atleast make this sorting technique more efficient.

Member Avatar for abrarsyed
0
811
Member Avatar for abrarsyed

#include<conio.h> #include<stdio.h> #include<ctype.h> #include<string.h> int precedence(char c) { switch(c) { case '*': case '/': return(2); case '+': case '-': return(0); } } char *to_postfix(char *infix) { char stack[30],postfix[30]; int i=0,j=0,top=-1; while(infix[i]!=NULL) { if(isalpha(infix[i])||isdigit(infix[i])) { postfix[j++]=infix[i++]; } else if(infix[i]=='(') { stack[++top]=infix[i++]; } else if(infix[i]==')') { while(stack[top]!='(') { postfix[j++]=stack[top--]; } top--; i++; …

Member Avatar for abrarsyed
0
557
Member Avatar for carrot_123
Member Avatar for abrarsyed

Hi, can we write a function in c, tht can accept any type of array, may tht be int, float, char, struct or of any any kind, as an argument and perform some task of tht like sorting etc. Thank you

Member Avatar for KenJackson
0
145
Member Avatar for abrarsyed
Member Avatar for Trentacle
0
234
Member Avatar for Rouf mir

How can we invoke commandline arguments in windows 7 using c language as a programming language

Member Avatar for Oxiegen
0
192

The End.