Saved Bookmarks
| 1. |
1+4+7+10+.....+n program in c |
|
Answer» #include #include main{ CLRSCR(); INT a=1,b=4,c=7,d=10; printf("int a+intb+intc+intd",%d+%d+%d+%d) GETCH(); } Explanation: i HOPE it works |
|