When should a type cast not be used?
No Answer is Posted For this Question
Be the First to Post Answer
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?
What is the meaning of 2d in c?
How can I handle floating-point exceptions gracefully?
why java is called as a purely oops language.
Write a C program to print 1 2 3 ... 100 without using loops?
What is the difference between break and continue?
related proverb of "dont count your chicken before it hatches"
How can you be sure that a program follows the ANSI C standard?
What is a memory leak in structures? How can we rectify that?
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
Explain the use of keyword 'register' with respect to variables.
main() { char *p; p="Hello"; printf("%c\n",*&*p); }