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
~252 People Reached
Favorite Tags
Member Avatar for nitsmooth

i have data coming in the grid view from the database. IS it possible to localize this dynamically coming data Note that the data fetched into the gridview from the db will be same everytime

Member Avatar for kvprajapati
0
76
Member Avatar for nitsmooth

I made this program to create a binary search tree but it is not working properly ......could smbdy tell me whts the prob /* Creating a BInary Tree */ #include<conio.h> #include<stdio.h> struct node { struct node *lt; struct node *rt; int data; }*temp; void inorder(struct node* root) { while(root != …

Member Avatar for nitsmooth
0
176