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 syntax error?
Find the error (2.5*2=5) (a) X=y=z=0.5,2.0-5.75 (b) s=15;
How to create a program that lists countries capitals when country is entered? (Terribly sorry, I'm a complete novist to coding with C, am looking for inspiration and general tips on how to code and create this program.)
void main() { int i=5; printf("%d",i+++++i); }
how to convert decimal to hexadecimal without using arrays just loops
WHAT WILL BE THE OUTPUT OF THE FOLLOWING QUESTION void main() { int x=4,y=3,z; z=x-- -y; printf("%d%d%d",x,y,z); }
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?
write the value of x and y after execution of the statements: int x=19,y; y=x++ + ++x; x++; y++;
What is the out put of this programme? int a,b,c,d; printf("Enter Number!\n"); scanf("%d",&a); while(a=!0) { printf("Enter numbers/n"); scanf("%d%d%d",&b,&c,&d); a=a*b*c*d; } printf("thanks!"); getche(); Entering numbers are a=1,b=2,c=3,d=4 b=3,c=4,d=-5 b=3,c=4,d=0
which typw of errors ? & how to solve it ?
How to develop a program using C language to convert 8-bit binary values to decimals. TQ
main() { char c; for(c='A';c<='Z';c++) getch(); }