to print the salary of an employee according to follwing calculation:
Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%.
Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/-
create c language program?
No Answer is Posted For this Question
Be the First to Post Answer
What is an anonymous union and where to apply that ?
What is C language Terminator?
What are different types of pointers?
How to swap 3 numbers without using 4th variable?
what is meant by the "equivalence of pointers and arrays" in C?
What does nil mean in c?
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
In a switch statement, explain what will happen if a break statement is omitted?
How does struct work in c?
Who invented b language?
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..
Who is invented by c?