Write a program in c to input a 5 digit number and print it
in words.
Answer Posted / prawin62
they directly asks for 5 digit naaa
so read that into a c[6] like that
and print c[0] thousand like that..........
| Is This Answer Correct ? | 32 Yes | 83 No |
Post New Answer View All Answers
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
Can you write the algorithm for Queue?
What is else if ladder?
What is a header file?
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
Write a program to print “hello world” without using semicolon?
What is the difference between malloc calloc and realloc in c?
Why flag is used in c?
how to find binary of number?
Explain how do you determine the length of a string value that was stored in a variable?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
What is variable declaration and definition in c?
Why doesnt that code work?
What are the different types of errors?
What are identifiers in c?