7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
2757Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
19084-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.
TCS,
2187using only #include
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
3942
what is recursion in C
What is the total generic pointer type?
What is a nested loop?
Where are local variables stored in c?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
What is an operator?
What is meant by gets in c?
What is the explanation for modular programming?
What is the significance of an algorithm to C programming?
How many identifiers are there in c?
What are the features of c language?
Can we declare a function inside a function in c?
How can I direct output to the printer?
What are the functions to open and close the file in c language?
What do you mean by Recursion Function?