WAP to accept basic salary of an employee?
Calculate it HRA=25%,DA=30%,PF=30%&net salary display all
contents?
Answer Posted / brijesh
jst add basic into net salary with da n hra n pf
| Is This Answer Correct ? | 4 Yes | 10 No |
Post New Answer View All Answers
What is a pointer variable in c language?
What is %d called in c?
Where does the name "C" come from, anyway?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is a structure and why it is used?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is the difference between #include
What is optimization in c?
How can I find the modification date and time of a file?
What is a stream?
please give me some tips for the placement in the TCS.
to find the closest pair
What is the significance of an algorithm to C programming?
What is a scope resolution operator in c?
How can I dynamically allocate arrays?