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.
2760Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
19104-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
3945
What is the purpose of 'register' keyword in c language?
What are called c variables?
The file stdio.h, what does it contain?
What are the types of arrays in c?
Give me the code of in-order recursive and non-recursive.
What are the different types of constants?
How can you be sure that a program follows the ANSI C standard?
provide an example of the Group by clause, when would you use this clause
What are operators in c?
What is the difference between struct and typedef struct in c?
What is a dynamic array in c?
What is #error and use of it?
What is the modulus operator?
Explain the difference between exit() and _exit() function?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.