how tally is useful?
Answers were Sorted based on User's Feedback
Answer / prabhakaran
Tally is more useful for manage company details,company
accounts details,and etc.,
and also we can calculate balance sheet,journel and etc.,
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / siddharth
tally is useful in many ways\
but i want o know more,..........
| Is This Answer Correct ? | 3 Yes | 1 No |
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?
What is probability to guarantee that the task a programmer is going to create will be created and be able to run on a particular system (RTOS/GPOS).
printy(a=3,a=2)
How to create a program that lists the capital country when told what the original country is? (Terribly sorry, I'm a novice programmer and would appreciate any help ;). Cheers, Alexxis
Write a C program to enter 10 integer numbers through one variable and count how many of them are even using while loop ?
write the value of x and y after execution of the statements: int x=19,y; y=x++ + ++x; x++; y++;
What is the code for following o/p * * * * * * * * * * * * * * * *
void main() { int i=5; printf("%d",i+++++i); }
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 ?
void main() { int i=5,y=3,z=2,ans; clrscr(); printf("%d",++i + --z + i++ + --i * ++y); i=5,y=3,z=2; ans=++i + --z + i++ + --i * ++y; printf("\n%d",ans); getch(); } Its output is 37 and 31.... Please explain me why its different How it works.....
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 .
I can not get my C++ program to work right. It is supposed to tell if a word is a palindrome or not, but it only tells thet the word is not a palindrome. And I can't fix it.