Welcome to SPL Page

1st semester Course Outline

Structured Programming Language(CSE0613)

Mark Distribution in Class

Mark Distribution Marks
Class Attendance/Performance 10
Class Test/Assignment
(Avg of before & after mid)
10+10
Mid Term 20
Final 50
Total 100

Mark Distribution in Lab

Mark Item Marks
Lab Attendance/Performance 10
Lab Performance 10
Test (Avg of before & after mid) 15+15
Quiz 20
Viva 10
Lab Report 10
Presentation 10
Total 100

Syllabus of Final

1. Loop
2. Array
3. String.h
  • strlen()
    "string length" — Returns the length of a string.
  • strrev()
    "string reverse" — Reverses the characters in a string. *(Non-standard, may not be in all compilers)*
  • strcpy()
    "string copy" — Copies one string into another.
    strcpy(dest, src); //from src to dest.
  • strcmp()
    "string compare" — Compares two strings and returns a value indicating their relationship.
  • strcat()
    "string concatenate" — Adds one string to the end of another.
    strcat(in1, in2); //in2 is added with the string in1, now in1 has both int1+in2.