What is the difference between far and near ?
No Answer is Posted For this Question
Be the First to Post Answer
without using control structures and control structures find the max and min of given 2 nos
program to find middle element of linklist?
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
Why do we use namespace feature?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
Why dont c comments nest?
What are derived data types in c?
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.
In C, What is the #line used for?
write a programme that inputs a number by user and gives its multiplication table.
What does typedef struct mean?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory