AAAAA BBBB CCC DD E #include <stdio.h> int main() { int i, j; for(i=1;i<=5;i++) { for(j=5;j>=i;j--) { printf("%c",'A'-1 + i); } printf("\n"); } return 0; }
how to write this code using cout statements?
java eclipse example ples?
How to "\" in c if non-english keyboard is there?E.g. By this caret sign can be done
how to print this patternif n=1 then * ***if n=2 then * *** * * *****and if n=3 then * *** * * ***** * * * *******
Good
What is the logic behind 'A'-1 + i??
how to write this code using cout statements?
ReplyDeletejava eclipse example ples?
ReplyDeleteHow to "\" in c if non-english keyboard is there?
ReplyDeleteE.g. By this caret sign can be done
how to print this pattern
ReplyDeleteif n=1 then
*
***
if n=2 then
*
***
*
*
*****
and if n=3 then
*
***
*
*
*****
*
*
*
*******
Good
ReplyDeleteWhat is the logic behind 'A'-1 + i??
ReplyDelete