Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
72% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~2K People Reached

8 Posted Topics

Member Avatar for uu666

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 parts of memory.... so there should be some way to specify the starting address of each such segments.....so wat i want to …

Member Avatar for L094129
0
180
Member Avatar for takkischitt
Member Avatar for zunnur
0
188
Member Avatar for pupsia

this sfould work and its in C which u needed.... [code=c] #include<stdio.h> main() { int a[128]; int fN; int n,i; int a[0]=1; int a[1]=1; printf("How many nos. do u want to add:\n"); scanf("%d",&i); printf("How many no. of digits u want to output:\n"); scanf("%d",&n); for(fN=2;fN<=i;fN++) { a[fN]=a[fN-1]+a[fN-2]; if((a[fN]>(pow(10,n-1)-1))&&(a[fN<(pow(10,n))) printf("%d\n",a[fN)); } getch(); …

Member Avatar for John A
0
389
Member Avatar for lakshmi.1987

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.....

Member Avatar for lakshmi.1987
0
53
Member Avatar for ankit_the_hawk

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 it.....k....

Member Avatar for lakshmi.1987
0
264
Member Avatar for Close Friends

[B]x equ 2[/B] [B]y equ 3 /*declare the var*/[/B] [B].code[/B] [B]mov ax,01h[/B] [B]mov bx,x[/B] [B]mov cx,y[/B] [B]loop1:mul bx[/B] [B] loop loop1[/B] [B]/*ax will have the result... and if in case the result occupies more than 16 bits...then the higher word is in dx */[/B] [B]note: this program is written for …

Member Avatar for lakshmi.1987
0
287
Member Avatar for darkwizard

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 by the operator.......... its really simple....

Member Avatar for lakshmi.1987
0
119
Member Avatar for lakshmi.1987

[B]can some one guide me in creating a text editor?tools that can be used,in detail.......[/B]

Member Avatar for Salem
0
104

The End.