- 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(); }
3 ответов
+ 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.
+ 3
What is "ma" ? Please use language name as tags, even "include <stdio.h>int" is not allowed.
- 2
This code is Right But he give me wronge