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

10 Posted Topics

Member Avatar for DarckHalf

If you are a programmer of C++ and want to program games then there is a very good library for you, that is, OpenGL. I am also programming games and animations using this library, I am new to OpenGL and find it very interesting.

Member Avatar for roax206
0
713
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
298
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
315
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

create a pointer and use increament operator to read the string. This should be maintained in a loop till the end of string. And for every next character make a check using if(*ptr == ' ') then your counter, which counts the number of words, should not increase.

Member Avatar for John A
0
126
Member Avatar for Demonisya

Well, a simple logic for u is that 1. maintain loop which will run until a condition occurs ( that condition i will tell u a bit later) 2. now in that while loop read the first two number, if the 2nd one is greater than one than swap both …

Member Avatar for its.romi
0
411
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
162
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
116
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
73
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
119

The End.