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
#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 |
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 |
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 |
char* f() return "hello:"; void main() {char *str=f(); }
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
A sample program using data structure? what is file handling?
How to develop a program using C language to convert 8-bit binary values to decimals. TQ
Given an int variable n that has been initialized to a positive value and, in addition, int variables k and total that have already been declared, use a do...while loop to compute the sum of the cubes of the first n whole numbers, and store this value in total . Thus if n equals 4, your code should put 1*1*1 + 2*2*2 + 3*3*3 + 4*4*4 into total . Use no variables other than n , k , and total .
Find the error (2.5*2=5) (a) X=y=z=0.5,2.0-5.75 (b) s=15;
Why are memory errors hard to debug?
what is exceptions?
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.
how tally is useful?
which typw of errors ? & how to solve it ?
what is syntax error?