- 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 RĂ©ponses
+ 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