I'm having trouble with coming up with the correct code.
Thank You!!
The assignment was to write a program using string functions
that accepts a price of an item and displays its coded value. The base of the keys:
X C O M P U T E R S
0 1 2 3 4 5 6 7 8 9
Sample I/O Dialogue:
Enter Price: 489.50
Coded Value: PRS.UX
No Answer is Posted For this Question
Be the First to Post Answer
char* f() return "hello:"; void main() {char *str=f(); }
How to develop a program using C language to convert 8-bit binary values to decimals. TQ
class test { int a; public: test(int b):a(b){} void show(){ cout<<a; } }; void main() { test t1; test t2(5); t1.show(); t2.show(); } }
what is exceptions?
void main() { int i=7; printf("N= %*d",i,i); }
How to reverse a linked list without using array & -1? Thank you.
How to upgrade LOOP environment, I just mean, how can i make loop statement editable ? I just try some program using loop statement and checking it in multiple compilers. Every compiler showing different output, what's the wrong ? is it a compiler based problem, or loop based problem, tell me why ? and what will be the debugging process, for this kind of problem ?
I am using Qt 5.6 during compilation it stops and gives error about Qmake The process "C:QtQt5.6.35.6.3msvc2015_64inqmake.exe" crashed. Error while building/deploying project untitled1 (kit: Desktop Qt 5.6.3 MSVC2015 64bit) When executing step "qmake"
UINT i,j; i = j = 0; i = ( i++ > ++j ) ? i++ : i--; explain pls....
quoroum of computer languages?
what is the large sustained error signal that eventually cause the controller output to drive to its limit
when i use cout or cin call & then either << or >> .....it shows declaration syntax error...what should i do? cout<<"anything"; int a; cin>>a; return 0;