#include <stdio.h>
#include <string.h>
void SAS(int argc, char * argv[])
{
int i;
for(i=0; i<argc; i++)
printf("%s \n", argv[i]);
}
int main() {
char * str[3]={
"C programming",
"C++ programming",
"JAVA programming",
};
SAS(3, str);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: