Why c is called procedure oriented language?
No Answer is Posted For this Question
Be the First to Post Answer
Explain union. What are its advantages?
Write the Program to reverse a string using pointers.
What does int main () mean?
Explain the use of 'auto' keyword
how to print "hai" in c?
WAP to find that given no is small or capital
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
What is assert and when would I use it?
program to print upper & lower triangle of a matrix
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
What is a structure member in c?
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }