Sunday, March 31, 2013
CSE-208 Lab Class: 30.03.2013
Hello Boys...
Do you want the programming lectures of 30rd March. The programs are run in the class. There are two programs in this class.
Do you want the programming lectures of 30rd March. The programs are run in the class. There are two programs in this class.
- .CPP Formats: Download from Hacker Box... ( Special thanks to Shawon Roll: 09 )
If you have any problem in downloading, please inform us. Don't forget to give your Comments or Ideas. Please click the Like or Useful button on your blog, if you like it...
Post Comment
Friday, March 29, 2013
6th Semester Mid-term Exam Routine 2013
Dhaka International University
Department of CSE (Evening)
Mid-term Exam-2013
6th Semester (Batch-E27th)
Only for Friday Time: 12.00-01.00PM
Venue: 66, Green Road Time:
06.00-07.00PM
Date & Day
|
Course No
|
Course Name
|
05-04-2013
Friday
|
CSE-207
|
Object Oriented Programming
|
06-04-2013
Saturday
|
CSE-209
|
Computer Organization & Architecture
|
09-04-2013
Tuesday
|
GED-202
|
Principle of Management
|
11-04-2013
Thursday
|
MATH-203
|
Complex Variables and Transforms
|
Post Comment
Sunday, March 24, 2013
CSE-208 Lab Assignment-2
Hacker Boys..
I am sure, you all need the CSE-208 Lab Assignment-2 that are from the Book: C++ Complete Reference, Page No: 313, 317. Programs are given bellow as two formats (JPEG and .CPP).
If you have any problem in downloading, please inform us. Don't forget to give your Comments or Ideas. Please click the Like or Useful button on your blog, if you like it...I am sure, you all need the CSE-208 Lab Assignment-2 that are from the Book: C++ Complete Reference, Page No: 313, 317. Programs are given bellow as two formats (JPEG and .CPP).
- JPEG Formats: Download from Hacker Box...
- .CPP Formats: Download from Hacker Box...
Thank You
Night Hawk
Post Comment
CSE-208 Lab Class: 23.03.2013
Hello Boys...
Do you want the programming lectures of 23rd March. The programs are run in the class. There are three programs in this class. This programs are given as two formats (JPEG and .CPP). Hope you like it.....
Do you want the programming lectures of 23rd March. The programs are run in the class. There are three programs in this class. This programs are given as two formats (JPEG and .CPP). Hope you like it.....
- JPEG Formats: Download from Hacker Box...
- .CPP Formats: Download from Hacker Box...
If you have any problem in downloading, please inform us. Don't
forget to give your Comments or Ideas. Please click the Like or Useful button on
your blog, if you like it...
Thank You
Night Hawk
Thank You
Night Hawk
Post Comment
Saturday, March 23, 2013
Top Sheet Formate of Lab Report
Dear Hacker Boys..
Here is the Top Sheet Formate of mine. Please modify for yourself. Hope you like it.
Download Link-1 or Download Link-2 enjoy.........
Thank You All for using our blog.
Night Hawk
Here is the Top Sheet Formate of mine. Please modify for yourself. Hope you like it.
Download Link-1 or Download Link-2 enjoy.........
Thank You All for using our blog.
Night Hawk
Post Comment
Sunday, March 17, 2013
Principal of Management
Dear friends,>> Here << is the download link of 'Principal of Management' lecture sheet :)
Post Comment
Saturday, March 9, 2013
Prime Number in C (CSE-208, Lab-2)
#include<stdio.h>
#include<conio.h>
int main()
{
int c,m,k;
printf("Enter the number");
scanf("%d",&c);
for(m=2;m<c;m++)
{
k=c%m;
if(k==0)
break;
}
if(k==0)
printf("%d is not prime number",c);
else
printf("%d is a prime number",c);
printf("%d",c);
return 0;
}
Post Comment
Subscribe to:
Posts (Atom)