Answer Posted / kasthur
it is one of the procedure oriented programming language
| Is This Answer Correct ? | 25 Yes | 2 No |
Post New Answer View All Answers
What is function and its example?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Explain union. What are its advantages?
Why #include is used in c language?
please send me the code for multiplying sparse matrix using c
Explain a pre-processor and its advantages.
What is the purpose of void pointer?
What is an operator?
What is typedef example?
What is the difference between call by value and call by reference in c?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is the difference between mpi and openmp?
Why does everyone say not to use scanf? What should I use instead?
What is wrong with this initialization?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }