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 is meant by int fun const(int a, int b) { .... ... }
Why is C called a middle-level language?
What is the difference between union and anonymous union?
Explain the meaning of keyword 'extern' in a function declaration.
Is c dynamically typed?
2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
How can I run c program?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
Is python a c language?
What Is The Difference Between Null And Void Pointer?
biggest of two no's with out using if condition statement
What is a macro?