What is problme | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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 Answers
+ 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