What is problme | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
- 1

What is problme

#include <stdio.h> int main() { int i,j; clrscr(); for(i=1;i<=5;i++) { for(j=1;j<=i;j++){ printf(ā€œ*ā€);} printf(ā€œ\nā€); } getch(); }

24th Feb 2021, 2:59 PM
Yasir Yagoub Ahmed
Yasir Yagoub Ahmed - avatar
3 Respostas
+ 3
Use regular quotation marks e.g. "*" and not slanted quotation marks e.g. ā€œ*ā€ clrscr() and getch() are non standard functions. Be prepared for problems when you use non standard functions.
24th Feb 2021, 3:27 PM
Ipang
+ 3
What is "ma" ? Please use language name as tags, even "include <stdio.h>int" is not allowed.
24th Feb 2021, 3:05 PM
Abhay
Abhay - avatar
- 2
This code is Right But he give me wronge
24th Feb 2021, 3:15 PM
Yasir Yagoub Ahmed
Yasir Yagoub Ahmed - avatar