How many levels of pointers have?
No Answer is Posted For this Question
Be the First to Post Answer
What is true about the following C Functions a.Need not return any value b.Should always return an integer c.Should always return a float d.Should always return more than one value.
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
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?
Why is c so important?
how to find the largest element of array without using relational operater?
Array is an lvalue or not?
What are the advantages of the functions?
how many times of error occur in C
Can you think of a logic behind the game minesweeper.
Write a c program using for loop in switch case?
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
What do you know about the use of bit field?