CSE Subject || CSE subject list in Bangladesh || BUBT 2023 || Engineering in Computer Science

CSE Subject

CSE Subject List in Bangladesh || CSE Full Course According to BUBT BUBT is 163 credits consisting of 120 theory credits 37 lab credits and a capstone project of 6 credits. FIRST-YEAR CSE Subject list 1st Semester : Course Title. Credits Course No Structured Programming Language 3 CSE 101 Structured Programming Language Lab 1.5 CSE 102 Electrical … Read more

Beecrowd 1019 solution || URI 1019 Time Conversion

Beecrowd 1019 solution

URI – BEECROWD – BEE 1019 Time Conversion Solutions in C, C++, and Python || Beecrowd 1019 solution Question Beecrowd 1019 solution Beecrowd 1019 solution presents the classic scheduling challenge: time shifting. In the challenge, times in seconds are converted to hours, minutes and seconds. This seemingly simple task requires a deep understanding of time … Read more

Uri 1080 Solution || BEE 1080 || Beecrowd1080 Highest and Position

Uri 1080 Solution

Beecrowd1080 Highest and Position question Uri 1080 Solution || BEE 1080 ||Free Code Center Highest and Position Adapted by Neilor Tonin, URI  Brazil Timelimit: 1 Read 100 integer numbers. Print the highest read value and the input position. Input The input file contains 100 distinct positive integer numbers. Output Print the highest number read and the … Read more

Program To Calculate Average In C

Average In C

Introduction: C is one of the most potent and flexible programming languages available today. Any C program has to understand how to compute averages and other mathematical operations. The fundamental idea of enables programmers to efficiently examine and work with data. We shall examine the typical world of C programming in this essay. We’ll talk … Read more

Nested if else in C Programming Examples

If Else in C

Nested if else in C Programming Examples || If-Else in C What is a Nested if-else Statement? A nested if-else the statement is simply an if-else the statement placed inside another if or else block. This is typically used when you need to make a series of decisions that depend on each other. Syntax if … Read more

C++ class Declaration

C++ class Declaration Class Name and Members Definition In C++, the class keyword is used before the class name to declare a class. Curly braces are used to surround the class’s body. Here is a simple illustration of a class that represents a “Car”: class Car { // Class members go here }; Access Descriptors … Read more

Searching for a Value in an array in c programming

array in c

Searching for a Value in an array in c programming #include<stdio.h> int main() { int num[]={12,34,56,78,19}; int pos=-1,value,i; scanf(“%d”,&value); for(i=0;i<5;i++) { if(value==num[i]){ pos=i+1; break; } } if(pos==-1){ printf(“value is not common”); } else printf(“value %d is found at %d position”,value,pos); } INPUT: 78 OUTPUT: value 78 is found at 4 positio A fundamental task in … Read more

Factorial Program in C: An In-Depth Guide

factorial program in c

Factorial Program in C Introduction While they may appear straightforward, factorials have a major role in both programming and mathematics. If you are dealing with combinatorial issues or probability calculations, or even some data science algorithms; being able to compute factorials swiftly is very important. This article will take us through the depths of factorials, … Read more

Hello World Programming in C

hello world programming in c

Hello World Programming in C #include<stdio.h> int main() { // Printf() shows the string enclosed in quotation marks. printf(” Hello, World!”); printf(” \n”); return 0; } OUTPUT: Hello, World! Knowing the code for #include “stdio.h”: This line instructs the compiler to include the standard input-output library (stdio.h) via a preprocessor directive. This library offers functionality … Read more