1D String on December 01, 2018 Get link Facebook X Pinterest Email Other Apps #include<stdio.h> int main() { int i; char str[5][20] = {"Binary","Ternary","Decimal","Hexadecimal","Octal"}; for(i=0; i<5; i++) { printf("%s\n", str[i]); } return 0; } Comments
Comments
Post a Comment