related proverb of "dont count your chicken before it hatches"
Answer Posted / guest
Don't put the cart before the horse...
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the explanation for modular programming?
What is pass by reference in c?
What is the use of getchar() function?
How do you override a defined macro?
Write a program to use switch statement.
What is getch c?
What does %d do in c?
Explain the priority queues?
How does selection sort work in c?
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?
Can the size of an array be declared at runtime?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Explain the advantages and disadvantages of macros.
What does the error message "DGROUP exceeds 64K" mean?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)