What is Programming?
Imagine you're playing with your favourite set of building blocks. You can build lots of different things with them, right? Now, let's think …
Imagine you're playing with your favourite set of building blocks. You can build lots of different things with them, right? Now, let's think …
Since the world is moving into the DevOps model, and the industry started focusing on automation, I thought of sharing something related to automatio…
Some FTP software doesn’t show hidden files such as .htaccess files by default. In this blog, you will see how to unhide dotfiles in FTP client lik…
Since the world is moving into the DevOps model, and the industry started focusing on automation, I thought of sharing something related to automat…
Using For Loop #include<stdio.h> int main(){ int x,y,m,i; do { printf("Enter two number: "); scanf("…
Summary: Factorial is represented using '!', so five factorial will be written as (5!),n factorial as (n!). n! = n*(n-1)*(n-2)*(n-3)...3.2.1…