THANKS TO SATYA FOR THE CODE – satish.smart@rediffmail.com ;;—————————————————————————————- ;; Database ;;—————————————————————————————- ;; Data definition : ;; (define-struct train(source desti… more →
pROjEct iVRemunchy wrote 1 year ago: THANKS TO SATYA FOR THE CODE – satish.smart@rediffmail.com ;;—————————————————————————————- ;; … more →
munchy wrote 1 year ago: ;;SPECIFICATION:——-TO MANAGE THE DOCTOR DETAILS OF DEPARTMENT OF HEALTH.—— … more →
munchy wrote 1 year ago: ;;======GLOBAL VARIABLES===== (define t1 0) (define t2 0) ;;=====CLASS DEFINITION===== (define (clas … more →
munchy wrote 1 year ago: (define shop(make-vector 10)) (define (product p_id p_name p_cid p_price) (define (dispproduct) (dis … more →
munchy wrote 1 year ago: PROGRAM :- ;; Schemes offer a case-lambda macro (define foo (case-lambda ((x) “no additional a … more →
munchy wrote 1 year ago: (define s_id 0) (define s_name “”) (define s_courseid -1) (define s_sex -1) ;1-male,0-fe … more →
munchy wrote 1 year ago: First WAY Code: - ;;defn of super class (define (superclass) (define (inclass) (display “\n In … more →
munchy wrote 1 year ago: (define s_id 0) (define s_name “”) (define s_courseid -1) (define s_sex -1) ;1-male,0-fe … more →
munchy wrote 1 year ago: (define (point x y) ;;like creating a class in c (define (getx) x) ;;private Function 1 to return x … more →
munchy wrote 1 year ago: This Program was created by my group for the Structured Programming Case Study for TCS ILP in Scheme … more →
munchy wrote 1 year ago: (define a(list 1 2 3 4)) (define b 5) (define c(list 6 7 8)) (define d 9) (define x(list a b c d)) ( … more →
munchy wrote 1 year ago: (define z (list 1 2)) (define x (list 3 4)) (define a (list z x)) (define b (list 4 3 2)) (define (a … more →
munchy wrote 1 year ago: Lists Lists can be built using pairs. A list is denoted by a collection of items enclosed in parenth … more →
munchy wrote 1 year ago: (define a 0) ;define initial values of the series a=0 (define b 1) ;define second initial value b=1 … more →
munchy wrote 1 year ago: (define rev 0) ; initialize reverse of number as 0 (define rem 0) ;initialize remainder as 0 ;;read … more →
munchy wrote 1 year ago: (display “enter the length of the vector you want to create :- “) (define a(read)) ; rea … more →
munchy wrote 1 year ago: Here we will be Using Structures to add two Complex numbers in Scheme Programming Language. Structur … more →
munchy wrote 1 year ago: Vectors Vectors are heterogenous structures whose elements are indexed by integers. A vector typical … more →
deadwait wrote 1 year ago: As you know i have just started learning programming ( i mean really learning “programming … more →