What is indirection? How many levels of pointers can you have?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Print all numbers which has a certain digit in a certain position eg: number=45687 1 number=4 2 number=5 etc
c program to compute Income tax and Net Salary for its employees. The company offers tax relief of Kshs. 650 for single employees and Kshs. 1,100 for married employees. The relief will be deducted from the Gross salary, to give the taxable income. This will be computed at the following rates: [10mks] Taxable Income Rate (%) <5000 0 5000-19999 6 20000-36999 9 37000 and above 16
what is a constant pointer in C
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
What is unsigned int in c?
write a program to fined second smallest and largest element in a given series of elements (without sorting)
Can we use any name in place of argv and argc as command line arguments?
What is the relationship between pointers and data structure?
how can i calculate mean,median,mode by using c program
What is string function c?
Why is C language being considered a middle level language?