Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
4
Posts with Downvotes
2
Downvoting Members
4
1 Commented Post
0 Endorsements
Ranked #4K
Member Avatar for DarckHalf

:$ Hi every one! I'm new here, just finished my registration! I know a little of c++ and I'm starting a project for a game of the new generation of games... like Gears of Wars or Bioshock but I'm feeling a little lost! And I wanted to ask [B]what is …

Member Avatar for roax206
0
711
Member Avatar for its.romi

im a student of 2nd year BS, doing my BS in Computer Science. Here I want to include a program by me, may be someone will be helped by me :) [code=c] #include<stdio.h> #include<conio.h> #include<stdlib.h> int* createHashTable(void); void getData(void); void formatting(void); int insertData(int); float chkLoadFactor(int, int); int collision_LinearProbing(int, int,int); int …

Member Avatar for zohaib yousuf
0
276
Member Avatar for its.romi

Added just to help other.... [code=c] #include<stdio.h> #include<conio.h> #include<stdlib.h> #define Operator 1 #define notOperator 0 #define empty -1 void formatting(void); void getInput(void); int chkElement(char); void opFunc(char); void varFunc(char); void push(struct node*); struct node* pop(void); void dispTree(void); void infix(struct node*); void prefix(struct node*); void postfix(struct node*); char equation[25]; struct node* stack[25]; …

Member Avatar for chat2fanna
-3
313
Member Avatar for its.romi

Hello everybody, I am in my final year of BS(Computer Science) and I have to do a final year project, I have read the threads in the forum related to this topic but these are mostly on web development or in networking side. My personal interest is in Arificial Intelligence. …

Member Avatar for ithelp
0
136
Member Avatar for Bhawana Pant

program to count the number of characters in any string excluding the blank space.

Member Avatar for John A
0
119
Member Avatar for Demonisya

Hello Once Again..... I need you to help me with this program im working. My teacher asked me to create a program that could arrange the random numbers from lowest to highest.... but I can't follow up what's next in my program: [CODE=SYNTAX] #include<stdio.h> #include<conio.h> int main() { int a,b[10]; …

Member Avatar for its.romi
0
374
Member Avatar for its.romi

I am currently working in asp.net, I m all new to web programming. I have to make a website for our clients, we will give them a user id and password of thier equipment and the details (given by the clients) will be entered in the database. My questions is …

Member Avatar for its.romi
0
155
Member Avatar for its.romi

Added just to help other.... [code=c] #include<stdio.h> #include<conio.h> #include<stdlib.h> void createHashTable(void); void getData(void); void formatting(void); int insertData(int); int collision_OpenHashing(struct hashOpen*& ,int); int generateKey(int); void DispData(void); void DispHash(void); #define dataSize 15 #define empty -1 #define fail 0 #define success 1 struct hashOpen{ int item; struct hashOpen *next; }*head, hashTable[10]; int dataArray[dataSize]; …

Member Avatar for rizrash
0
114
Member Avatar for its.romi

Hello everybody I have an assignment related DMA so I need some information about Direct Memory Access and ISA, EISA How peripherals uses DMA? How new microprocessors uses DMA for high performance?

Member Avatar for its.romi
0
72
Member Avatar for its.romi

Added binary Tree just to help others..... [code=c] #include<stdio.h> #include<conio.h> #include<stdlib.h> void formatting(void); int input(void); struct binTree* createNode(struct binTree*,int); void insert(struct binTree*, int); struct binTree* searchNode(struct binTree*, int); struct binTree* search(struct binTree*, int); void dispTree(struct binTree*); struct binTree{ int item; struct binTree *leftChild, *rightChild; }*root=NULL, *node; void main(void) { char …

Member Avatar for Narue
0
115