I'm having trouble with coming up with the correct code. Do
I need to put a loop? Please let me know if I'm on the right
track and what areas I need to correct. I still don't have a
good grasp on this programming stuff. Thanks =)

The assignment was to write a program using string functions
that accepts a coded value of an item and displays its
equivalent tag price. The base of the keys:

0 1 2 3 4 5 6 7 8 9
X C O M P U T E R S

Sample I/O Dialogue:

Enter coded value: TR.XX
Tag Price : 68.00

Answers were Sorted based on User's Feedback



I'm having trouble with coming up with the correct code. Do I need to put a loop? Please let m..

Answer / pushkar kalantri

#include<stdio.h>
#include<string.h>

void main()
{
char
v1[11]={'X','C','O','M','P','U','T','E','R','S','\0'},p='.';
int v2[11]={0,1,2,3,4,5,6,7,8,9};
char ip[10];
int n,i,j,k=0,cnt=0;
//clrscr();

printf("Enter coded value: ");
scanf("%s",ip);

// printf("\nur entered code = %s",ip);
printf("\nUr price is = ");


for(i=0;v1[i]!='\0';i++)
{
if(ip[k]=='.')
{
++k;
printf("%c",p);
}
if(ip[k]==v1[i])
{
printf("%d",i);
++k;
i=-1;
if(ip[k]=='\0')
break;
}
}
}
//compiled by GCC

Is This Answer Correct ?    6 Yes 4 No

I'm having trouble with coming up with the correct code. Do I need to put a loop? Please let m..

Answer / levixnu

#include<stdio.h>
#include<string.h>
#include<conio.h>

void main()
{
char
v1[11]={'X','C','O','M','P','U','T','E','R','S','\0'},p='.';
int v2[11]={0,1,2,3,4,5,6,7,8,9};
char ip[10];
int n,i,j,k=0,cnt=0;
clrscr();

printf("Enter coded value: ");
scanf("%s",ip);

printf("\nur entered code = %s",ip);
printf("\nUr price is = ");


for(i=0;v1[i]!='\0';i++)
{
if(ip[k]=='.')
{
++k;
printf("%c",p);
}
if(ip[k]==v1[i])
{
printf("%d",i);
++k;
i=-1;
if(ip[k]=='\0')
break;
}
}
getch();
}

Is This Answer Correct ?    4 Yes 2 No

I'm having trouble with coming up with the correct code. Do I need to put a loop? Please let m..

Answer / roxy

#include<stdio.h>
#include<string.h>

main()
{
char v1[11]={'X','C','O','M','P','U','T','E','R','S','\0'};
char v2[11]={'0','1','2','3','4','5','6','7','8','9','\0'};

int n;
clrscr();

printf("Enter coded value: ");
scanf("%s",v1);

n=strncpy(v1, v2, 1);

v2[1]='\0';

printf("\nTag Price: %s ",v2);

getch();
}

Is This Answer Correct ?    3 Yes 14 No

Post New Answer

More C C++ Errors Interview Questions

difference between c/c++ programing language? what is necessesity of c++ when existing c programing language?

2 Answers   TCS,


what is meant by linking error? how can i solve it? if there is a linking error " unable to open file 'cos.obj'? then what should i do?

1 Answers  


what is exceptions?

5 Answers   HCL, Wipro,


Given that two int variables, total and amount , have been declared, write a sequence of statements that: initializes total to 0 reads three values into amount , one at a time. After each value is read in to amount , it is added to the value in total (that is, total is incremented by the value in amount ). Instructor's notes: If you use a loop, it must be a for loop. And if you use a loop control variable for counting, you must declare it.

1 Answers   Google,


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;

2 Answers  






Given that two int variables, total and amount, have been declared, write a loop that reads integers into amount and adds all the non-negative values into total. The loop terminates when a value less than 0 is read into amount. Don't forget to initialize total to 0. Instructor's notes: This problem requires either a while or a do-while loop.

3 Answers  


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(); } }

1 Answers  


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 ?

1 Answers  


To generate the series 1+3+5+7+... using C program

18 Answers  


#include"stdio.h" #include"conio.h" void main() { int a; printf("\n enter a number:"); scanf("%c\n"); getch(); }

12 Answers   HCL,


Given an int variable n that has already been declared and initialized to a positive value, and another int variable j that has already been declared, use a do...while loop to print a single line consisting of n asterisks. Thus if n contains 5, five asterisks will be printed. Use no variables other than n and j .

2 Answers  


What are the different types of errors in C and when they occur?

4 Answers  


Categories