Answer to Question #242437 in C for Sonal

Question #242437

In a bank there are two types of transactions: credit and debit. All transactions are assigned an alphabetical ID. Credit transactions are assigned a vowel and debit transactions are assigned a consonant. To track transactions over a year, all the transaction IDs are combined to form a string of IDs for each customer. A customer wishes to know the number of times he made a debit transaction immediately after a credit transaction.


Write an algorithm to print the count of debit transactions that were made immediately after a credit transaction for that particular customer


1
Expert's answer
2021-09-26T12:28:06-0400


#include <stdio.h>
int main()
{
    int c;
    printf("\nChoose type of transaction:\n1. Credit \n2. Debit\n");
    scanf("%d",&c);
    char id_c;
    char id_d;
    int count=1;
    if (c==1){
        id_c='a';
        count=1;
    }
    else if(c==2){
        id_d='b';
    }
    
    printf("%d",count);
    return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS