Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~49.0K People Reached
Favorite Tags
Member Avatar for rupali

How to calculate time complexity of any algorithm or program .... need help on this..

Member Avatar for jamie_13
2
48K
Member Avatar for vbcielle

how will i round off the return value to decimal place with tis function? [code] unsigned int CalculatePercentage(int TotalComponent, int PartialComponent){ return int((PartialComponent/TotalComponent)100); }[/code]

Member Avatar for WaltP
0
206
Member Avatar for vbcielle

hello i am doing a program that saves cell values from sheet1 to sheet2 as my database including the value in the drop down. my program can save the value of the dropdonw to sheet2 ...my problem is how can display return or display any values saved in sheet2 to …

Member Avatar for cguan_77
0
164
Member Avatar for vbcielle

i have three arrays below [code] l = 0 For k = LBound(Tstk) To UBound(Tstk) Tstk(k) = stk(l) l = l + 1 Next k [/code] [code] z = 0 For x = LBound(qty) To UBound(qty) qty(x) = Text5(z).Text z = z + 1 'Tstk(x) = stk(z) - Text5(z).Text 'Print …

0
110
Member Avatar for vbcielle

i have a search program that when searched i will make a receipt, a reciept form will be displayed, the 1st item searched will be displayed on text1(0).text and the quantity also will be displayed in text5(0).text my problem is how to subtract the stock items minus the quantity text5(0).text(its …

0
126
Member Avatar for vbcielle

im converting a fibonacci c code to tasm assembly... i've started my code but im having a difficulty in the part where return fibo(n-1)+fibo(n-2)...please help the red fonts is where im not sure if my code is correct...can you please help c code: [code]int fib(int n) { if (n <= …

0
107
Member Avatar for vbcielle

I had replaced my power supply recently because the fan churning....now my problem is my monitor is shaking or wobbles...what seems to be the problem?

Member Avatar for vbcielle
0
72
Member Avatar for vbcielle

i want to add all the inserted linked list by using this code but what happens here if i input 15 then 35 =50 but when i input again 30 the sum is 50whats wrong with my code? [CODE] int sum(nd **head){ nd *p,*sum1; p=*head; sum1=0; while(p!=NULL) { sum1->x=p->x; p=p->next; …

Member Avatar for vbcielle
0
147
Member Avatar for vbcielle

Can anyone help me...i have a file modt.txt and i want to save the content in modt2.txt but it seems my code is not working. Moreover, if i have the content of the 1st file Have a nice day. i want to save it to the 2nd file without double …

Member Avatar for vbcielle
0
149
Member Avatar for vbcielle

Please help can you help me debug my code i cant display the result and the computation for sum is error... help me please :sad: [code] #include <stdio.h> int i,counter; float sum; struct cgrade { char course[50]; float credit[50]; float grade[50]; }; struct cgrade GPA[50]; main(){ printf("Enter number of courses …

Member Avatar for vbcielle
1
112