write a program that prints a pascal triangle based on the
user input(like how many stages) in an efficient time and
optimized code?
Answer Posted / abhinav
call this recursive routine:
void pascal(int n)
{
if(n==1) {
printf("%d \n", n);
return;
}
pascal(n-1);
int i;
for(i=1;i<=n; i++)
printf("%d ",i);
for(i=n-1;i>=1; i--)
printf("%d ",i);
printf("\n");
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is a constant pointer in C
How can I read a binary data file properly?
What is 1f in c?
What is the right type to use for boolean values in c? Is there a standard type?
What are the different types of objects used in c?
What does %d do?
Describe static function with its usage?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
Is there a way to compare two structure variables?
Why doesnt long int work?
Can we access array using pointer in c language?
What is the most efficient way to count the number of bits which are set in an integer?
What are the standard predefined macros?