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.
No Answer is Posted For this Question
Be the First to Post Answer
What are shell structures used for?
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
what is a void pointer?
Give me basis knowledge of c , c++...
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
What is the scope of local variable in c?
What does sizeof int return?
Explain the term printf() and scanf() used in c language?
Write a program to reverse a string.
0 Answers Global Logic, iNautix, TCS, Wipro,
how to find anagram without using string functions using only loops in c programming
How many types of operators are there in c?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.