fork download
  1. #include <stdio.h>
  2. void dummyFunction(char *);
  3. int main(void) {
  4. // your code goes here
  5. char arr[]={'1','2','3'};
  6. dummyFunction(arr);
  7.  
  8. return 0;
  9. }
  10.  
  11. void dummyFunction(char *p){
  12. while(*p!='\0'){
  13. printf("%c",*p);
  14. p++;
  15. }
  16. }
  17.  
Success #stdin #stdout 0s 4396KB
stdin
Standard input is empty
stdout
123