How can I discover how many arguments a function was actually called with?
No Answer is Posted For this Question
Be the First to Post Answer
What is const and volatile in c?
Explain how to reverse singly link list.
write a programming in c to find the sum of all elements in an array through function.
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
which header file contains main() function in c?
17 Answers Google, HCL, TCS,
What is the use of extern 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.
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
Explain what is the difference between #include and #include 'file' ?
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4