Lets first see what are these two animals -
Complete Binary Tree
A complete binary tree is a binary tree in which every level, except possibly the last, is completely filled, and all nodes are as far left as possible.
Full Binary Tree
A full binary tree is a binary tree in which every node other than the leaves has two children.
Now coming to your query, can complete binary tree be a full binary tree, answer is yes. See the following Complete Binary tree which is full also
x
/ \
/ \
x x
/ \ / \
x x x x
/ \
x x
As except the leaf node all node has exactly two children.