Answer Posted / rajeshkumar
dennis ritche
| Is This Answer Correct ? | 27 Yes | 3 No |
Post New Answer View All Answers
Explain what is the best way to comment out a section of code that contains comments?
What is difference between structure and union with example?
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 general form of function in c?
Why structure is used in c?
What are variables c?
can anyone please tell about the nested interrupts?
What is the purpose of macro in C language?
What is pointer to pointer in c?
why we wont use '&' sing in aceesing the string using scanf
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
In C language what is a 'dangling pointer'?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is structure data type in c?
Why does everyone say not to use scanf? What should I use instead?