Where define directive used?
No Answer is Posted For this Question
Be the First to Post Answer
Is there a way to jump out of a function or functions?
How do you construct an increment statement or decrement statement in C?
Software Interview Questions
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
what are the uses of structure?
What is pointer to pointer in c?
Write a program to print fibonacci series without using recursion?
what is the differance between pass by reference and pass by value.
I have seen function declarations that look like this
What is the benefit of using an enum rather than a #define constant?
what is difference between C and C++