Giter VIP home page Giter VIP logo

DEBJIT GHOSH's Projects

assignment-4 icon assignment-4

In this assignment you have to show your skills on basic tensorflow.

nqueensproblem icon nqueensproblem

A recursive solution for N-queens problems it prints first 4 solution(if exists)

universitymarksheet_program_inc icon universitymarksheet_program_inc

Implement the function PrintUniversityMarksheet() below. You are encouraged to use "qsort()" for the purpose of sorting. [40] Assume the following declarations: typedef struct _Student { char name[30]; int rollNumber; int marks[5]; int subjectIndexes[5]; // index into UniversitySubjectList } Student; typedef enum _Semester { EVEN, ODD } Semester; extern char *UniversitySubjectList[]; // Available array of Subject names typedef struct _UniversityMarksheet { int academicYear; // 2019, 2020, etc. Semester semester; int totalStudents; // For indicated year and semester Student *arrayStudents; // Details of every student } UniversityMarksheet; void PrintUniversityMarksheet(int totalMarksheets, UniversityMarksheet *marksheets); Prints the marksheets for all years and semesters available. Each line has "tab-separated" items "Total Marks", "Name of Student", "Subject and Marks" (five of them). "Total Marks" is the total of the five marks. Each entry of "Subject and Marks" is of form '<Subject>: <mark>' --- for a student, marks[i] is the mark for the i-th subject and UniversitySubjectList[subjectIndexes[i]] is the name of the corresponding subject. Each new semester begins with the heading "Year: <yyyy>, Semester: <ODD or EVEN>”. After every semester's data, there is a line of 80 'dash (-)'-es. THE ENTIRE LIST PRINTED MUST BE SORTED AS FOLLOWS: 1. Each year-semester group is sorted by year (primary) and semester (secondary, with ODD coming before EVEN) 2. Within each year-semester, the printed must appear sorted on Total marks obtained by student. However, if multiple students have the same total, they must be sorted on the students' names.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.