0
How to write code of this in c language
* *** ***** *** *
4 odpowiedzi
+ 4
Why are people downvoting Daniel Briceño 's answer? It does the job...
Harsh Singh
If you want a better answer than that, you need to show your attempt at solving the problem.
+ 3
As @Daniel Briceño said, thats the best efficient (fastest with less computer resources) way to print your ouput.. 👍
+ 2
#include <stdio.h>
int main(int number,char* argument[]){
printf(""
"*\n"
" ***\n"
" ****\n"
" **\n"
" *");
return 0;
}
+ 1
Harsh Singh
This is your solution. Now add space before *
https://code.sololearn.com/cFMmL2l6Zb4b/?ref=app