Forum: Computer Science Mar 13th, 2009 |
| Replies: 4 Views: 736 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... |
Forum: C Jan 31st, 2009 |
| Replies: 12 Views: 1,539 It seems that the code is written in Pascal or it's just and algorithm. Well, := means equal to (=) in C.
the algorithm is same as i told u before. |
Forum: C Jan 30th, 2009 |
| Replies: 12 Views: 1,539 Solution has been sent to you ... however i didnt compile the code, but it will work, i just forgot to set the boundries of array and hope that u will do it by using a nested while loop of if... |
Forum: C++ Jan 30th, 2009 |
| Replies: 8 Views: 462 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... |
Forum: C Jan 30th, 2009 |
| Replies: 12 Views: 1,539 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... |
Forum: ASP.NET Jan 30th, 2009 |
| Replies: 2 Views: 428 Thank you :)
Nice piece of information
Now i can use it in my website :)
Thanks alot |
Forum: ASP.NET Jan 30th, 2009 |
| Replies: 2 Views: 428 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... |
Forum: Game Development Jul 28th, 2008 |
| Replies: 14 Views: 5,144 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... |
Forum: C Apr 27th, 2008 |
| Replies: 4 Views: 942 void createHashTable(void);
This function creates a hash table in which the data items are to be inserted in sorted form for better searching
void getData(void);
This function collects data from... |
Forum: Motherboards, CPUs and RAM Jan 28th, 2008 |
| Replies: 2 Views: 731 :)
Thanks!!
i am trying it but still i have some confusion about the internal archetechture. I posted a thread here for some good links.
Well God bless you
and again thank you |
Forum: Motherboards, CPUs and RAM Jan 28th, 2008 |
| Replies: 2 Views: 731 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? |
Forum: C Dec 18th, 2007 |
| Replies: 7 Views: 4,787 im using Turbo C 3.0
can u plz tell me those errors, so that i can do some better work next time |
Forum: C Dec 12th, 2007 |
| Replies: 3 Views: 681 im Student!! :)
there might be some mistakes... but as im a student and i have made this so i thought that perhaps it could be helpful |
Forum: C Dec 12th, 2007 |
| Replies: 4 Views: 942 Added just to help other....
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
void createHashTable(void);
void getData(void);
void formatting(void);
int insertData(int); |
Forum: C Dec 12th, 2007 |
| Replies: 7 Views: 4,787 Added just to help other....
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#define Operator 1
#define notOperator 0
#define empty -1 |
Forum: C Dec 12th, 2007 |
| Replies: 3 Views: 681 Added binary Tree just to help others.....
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
void formatting(void);
int input(void);
struct binTree* createNode(struct binTree*,int);... |
Forum: C Dec 12th, 2007 |
| Replies: 2 Views: 2,101 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 :)
#include<stdio.h>
#include<conio.h>... |