There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
what is the function of void main()?
size maximum allocated by calloc()
All technical questions
Write a function to find the area of a triangle whose length of three sides is given
Can we change the value of static variable in c?
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
Explain how can I write functions that take a variable number of arguments?
Give me basis knowledge of c , c++...
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?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
What is key word in c language?
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail