Describe static function with its usage?
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.
Compare interpreters and compilers.
Explain what’s a signal? Explain what do I use signals for?
write c program without semicolon
11 Answers MindTech, TCS, Wipro,
where do we use volatile keyword?
write a program to copy the string using switch case?
write a program without using main function?
What are the 4 types of organizational structures?
3. When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
void main() { int i=5; printf("%d",i++ + ++i); }
What are qualifiers in c?
Write a program to find minimum between three no.s whithout using comparison operator.