When should a type cast be used?
No Answer is Posted For this Question
Be the First to Post Answer
What are the types of i/o functions?
write a program of bubble sort using pointer?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What are the different types of storage classes in C?
What is wrong with this program statement?
What do header files do?
multiple of 9 without useing +,* oprator
What does printf does?
What are the different data types in C?
How to set a variable in the environment list?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
How main function is called in c?