Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
60% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #4K
~7K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

8 Posted Topics

Member Avatar for mtatadotcom

hello friends, may anyone help me with a code in c for the mechanism of using an atm machine, conditions 1.acc balance starts at zero 2.do not use global variables 3.loop the main menu after every transaction until user presses exit 4.after every transaction user returns to the main menu. …

Member Avatar for chandrasekhar77
0
6K
Member Avatar for syria718

the problem is in this portion of the code [CODE] scanf("%c",&choice1);[/CODE] try puting a space betewee " and %C when declaring the variable type char, this sometimes refuses to accept the input and porceeds to the end or enters a random input instead try replacing that piece of code with …

Member Avatar for Narue
0
278
Member Avatar for mtatadotcom

i have formated a friends laptop by instaling a new windows 7 in a different partition but i do not know how to remove the old windows from the other partition, the computer keeps saying unable to perform format when i format the partition containig the old windows please help.

Member Avatar for jingda
0
217
Member Avatar for mtatadotcom

hello, i need help with this sub program, everything ele works fine except the subprogram that should compute the smallest and largest number in the array [CODE] #include<conio.h> #include<stdio.h> #define MAX 10 int input(void); int range(int i,int *s1,int *s2,int *s3,int *l1,int *l2,int *l3,int f[MAX],int hf[MAX],int lf[MAX]); void output(int v,int s1,int …

Member Avatar for mtatadotcom
0
168
Member Avatar for sharma89bunty

[CODE]scanf("%d",marks)[/CODE] narue is right you forgot the pointer & before marks it should be [CODE]scanf("%d", &marks);[/CODE]

Member Avatar for mtatadotcom
1
88
Member Avatar for masih906

yes sure waltp but if he cant code the game himself, he should atleast be able to come up with an algorithm for it, so that he may be guided as to what functions suite his code,BUT NOT WRITE THE WHOLE THING FOR HIM

Member Avatar for masih906
0
94
Member Avatar for Phesojon

why dont you try using case switch, it will make your code easier to understand and trace for errors [CODE]while(quit=='n'||quit=='N');[/CODE] where does the do start, u cant have while at the end without the initiation point do not use if with while, while is a looping condition ( do while …

Member Avatar for rubberman
0
230
Member Avatar for geoffy0404

[QUOTE]if((int) total > 90 || total < 100)[/QUOTE] the logical operator OR is not very efficient at traping a number in certain boundaries, because. [COLOR="Red"]only one[/COLOR] of the two conditions to be true to conclude that the condition is valid to proceed, so if you enter 50 [QUOTE] total < …

Member Avatar for mtatadotcom
0
99

The End.