What is I ++ in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
biggest of two no's with out using if condition statement
Explain demand paging.
Explain a file operation in C with an example.
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
What is the need of structure in c?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
what is the difference between postfix and prefix unary increment operators?
Why preprocessor should come before source code?
How does free() know explain how much memory to release?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What is difference between structure and union with example?
What are the types of arrays in c?