Logo 
Search:

Artificial Intelligence Articles

Submit Article
Home » Articles » Artificial Intelligence » ProLogRSS Feeds

Prolog program to find last item of the list

Posted By: Milind Mishra     Category: Artificial Intelligence     Views: 4885

Prolog program to find last item of the list.

Code for Prolog program to find last item of the list in Artificial Intelligence

domains
    namelist = symbol*
predicates
    lastd(namelist,symbol)
clauses        
    lastd([Head],X):-
        X = Head.
        lastd([_|Tail],X):-
            lastd(Tail,X).

Output : 

Goal: lastd([a,b,c,d],X)
X=d
1 Solution
  
Share: 


Didn't find what you were looking for? Find more on Prolog program to find last item of the list Or get search suggestion and latest updates.

Milind Mishra
Milind Mishra author of Prolog program to find last item of the list is from India.
 
View All Articles

 

Other Interesting Articles in Artificial Intelligence:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!