If you don't need to use awk, paste could work:
$ cat fileB | paste -d $'\n' fileA - - - | tr -s $'\n' >fileC
The tr part isn't necessary, so you can remove it if you don't mind a couple of extra trailing newlines.
If you don't need to use awk, paste could work:
$ cat fileB | paste -d $'\n' fileA - - - | tr -s $'\n' >fileC
The tr part isn't necessary, so you can remove it if you don't mind a couple of extra trailing newlines.