% Write a Prolog program to implement append for two lists. /*concatenate*/ conc([],L,L). conc([X|M],N,[X|Q]):- conc(M,N,Q). % Output
% Write a Prolog program to implement append for two lists. /*concatenate*/ conc([],L,L). conc([X|M],N,[X|Q]):- conc(M,N,Q).
% Output
Prolog program to implement append for two lists
Video to append lists in Prolog...
No comments:
Post a Comment