Category: Programming
SpaceX, the brainchild of visionary entrepreneur Elon Musk, has been making waves in the aerospace industry since its founding in 2002. With a mis [...]
HTML, or HyperText Markup Language, is the standard markup language used to create and design documents on the World Wide Web. Developed by Tim Berner [...]
Certainly! A "Hello, World!" program is often the first program written by beginners learning a new programming language. Here's an example in the C [...]
String: In C programming, a string is a sequence of characters terminated with a null character .
Example:
char c[] = "bangladesh";
How to [...]
Code
#include
int main() {
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
}
Output
Hello, [...]
Syntax
The syntax of a for loop in C programming language is −
for ( init; condition; increment ) {
statement(s);
}
Program:
#include
[...]
প্রথমে দুটি ভ্যারিয়েবল এ দুটি সংখ্যা scanf ফাংশন এর মাধ্যমে ইনপুট হিসাবে নিয়ে বিয়োগ (-) অপারেটর এর মাধ্যমে অপারেট করে এসাইন (=) অপারেটর এর মাধ্যমে res [...]
In most computer programming languages, a while loop is a control flow statement that allows code to be executed repeatedly based on a given Boolean c [...]
Factorial Number: The product of an integer and all the integers below it; e.g. factorial four ( 4! ) is equal to 24.
4! = 4 × 3 × 2 × 1 = 24
Cod [...]
এমন একটি প্রোগ্রাম লিখ, যা ব্যবহারকারীর কাছ থেকে একটি পাসওয়ার্ড নিবে। সঠিক পাসওয়ার্ড প্রদান করলে দেখাবে Successfully Log In আর যদি ভুল পাসওয়ার্ড প্রদা [...]





