Forum: C Mar 15th, 2007 |
| Replies: 44 Views: 5,502 this sfould work and its in C which u needed....
#include<stdio.h>
main()
{
int a[128];
int fN;
int n,i;
int a[0]=1;
int a[1]=1; |
Forum: Graphics and Multimedia Mar 15th, 2007 |
| Replies: 2 Views: 988 i have to learn the basics...... using these circles, lines.... etc i have to develop a simple application.... |
Forum: Graphics and Multimedia Mar 14th, 2007 |
| Replies: 2 Views: 988 hi... all as i have to do a simple project in graphics.... which is a part of our curriculum.... i want u to suggest me a topic..... |
Forum: C Mar 14th, 2007 |
| Replies: 27 Views: 5,773 make use of string comparision function strcmp() and any sorting method.....its goin to be simple.....
if in case u r not able to device a solution..... i ll post u the code... try to understand... |
Forum: Assembly Sep 19th, 2006 |
| Replies: 4 Views: 9,263 i hope u know that in certain processors, the memory is segmented(or divided)...basically its not physically segmented rather its logical....the purpose is to store code,data,stack etc in different... |
Forum: Assembly Sep 19th, 2006 |
| Replies: 4 Views: 3,373 x equ 2
y equ 3 /*declare the var*/
.code
mov ax,01h
mov bx,x
mov cx,y
loop1:mul bx
loop loop1
/*ax will have the result... and if in case the result occupies more than 16... |
Forum: Assembly Sep 19th, 2006 |
| Replies: 10 Views: 8,156 wat exactly u need?
a progm written in assembly level language? |
Forum: C++ Sep 19th, 2006 |
| Replies: 6 Views: 2,239 you do the followin:
*declare two variables which act as two opeands
*a char variable that recieves the type of operation(+,-./,*)
*make use of switch statement and perform opeations as specified... |
Forum: C++ Sep 18th, 2006 |
| Replies: 8 Views: 3,048 i appreciate your help.....but the stuff in the link which u gave is too complicated....as i have been asked to implement a simple text editor....i need the basic things....like i wanna know how do i... |
Forum: C++ Sep 18th, 2006 |
| Replies: 8 Views: 3,048 similar to note pad....cant i create something like turboc editor?? |
Forum: C++ Sep 18th, 2006 |
| Replies: 8 Views: 3,048 i hope u can find the word "GUIDE" in the thread which i posted.....anyways lemme tell u i am takin up text editor as a mini project which is a part of our curriculum....and i am restricted to use... |
Forum: C++ Sep 17th, 2006 |
| Replies: 8 Views: 3,048 can some one guide me in creating a text editor?tools that can be used,in detail....... |