What is the scope of static variable in c?
What is the size of array float a(10)?
Ow can I insert or delete a line (or record) in the middle of a file?
What is the modulus operator?
What are the different types of data structures in c?
How can I determine whether a machines byte order is big-endian or little-endian?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
How can I invoke another program or command and trap its output?
What is #include stdlib h?
Why pointers are used?
Why do we use int main?
Explain the difference between malloc() and calloc() in c?
How to declare pointer variables?