Ask Programiz - Human Support for Coding Beginners

Explore questions from fellow beginners answered by our human experts. Have some doubts about coding fundamentals? Enroll in our course and get personalized help right within your lessons.

  • All
  • Python
  • C
  • Java
  • CPP
  • SQL
  • JS
  • HTML
  • CSS
Bouaziz Mohamed
last year
Bouazizcountry asked
Kelish Rai
Expert
last year
Kelish Rai answered

Simply put, main() is the starting point of every C program. When you run your code, execution always begins from main()

As you progress with your coding journey, you'll get a clearer understanding of what main() is and how it works.

Let me know if you have any more questions. I'm happy to help.

C
This question was asked as part of the Learn C Programming course.
Abdul Haq Mohammed
PRO
last year
Abdulcountry asked
Kelish Rai
Expert
last year
Kelish Rai answered

We use the int data type in C to store whole numbers, like 5, -2, or 1000.

In most programs, numbers come up a lot—whether it’s counting things, doing math, tracking scores, or working with menus and options—so having a way to store and work with integers is really useful.

Also, when you're just starting out, working with integers is simpler than other types like strings.

Let me know if there's anything else I can help with.

C
This question was asked as part of the Learn C Programming course.
Sudip Bhandari
Expert
last year

In C, %d is a format specifier used to print integer values. It tells printf(), "Insert an integer here."

For example:

#include 

int main() {

    // Declare and assign an int variable
    int age = 25;

    // Print the value of the variable
    printf("John's age is %d", age);

    return 0;
}

Output

John's age is 25

In printf("John's age is %d", age);, the %d is replaced by the value of age, formatting the output correctly.

You'll come across more format specifiers as you progress in the course.

Let me know if anything is unclear. I'm happy to help.

C
This question was asked as part of the Learn C Programming course.
Debopriya Mitra
last year
Debopriyacountry asked
Sudip Bhandari
Expert
last year

Good question!

In programming, parentheses (the rounded brackets ()) are used in different ways depending on the context.

Here are two common uses:

  • Grouping expressions to control the order of operations:
    Example:

    (5 + 19) / 6 * (2 + 5) 

    Parentheses make sure that the additions happen before division and multiplication.

  • Defining function calls and passing arguments:
    Example:

    // function definition
    int main() {
       ...
    }
    
    // Function call
    addNumbers(10, 5); 

    Here, parentheses are used to define and call functions, and to pass values into them.

You'll be using parentheses a lot as you continue learning to code, and it will start feeling more natural as you progress.
So I suggest you keep moving forward step-by-step.

Let me know if you have any more questions—happy to help!

C
This question was asked as part of the Learn C Programming course.
Mergim Berisha
PRO
last year
Mergimcountry asked
Sudip Bhandari
Expert
last year

Let me try to explain the concept.

A number is called prime if it is only divisible by 1 and itself. If no other number can divide it exactly, then the number is prime.

So to check if a number is prime, we try dividing it by all numbers between 2 and (number - 1).

  • If it divides evenly by any of them, it's not a prime number.

  • If it doesn’t divide evenly by any, then it's prime.

Here’s a function that checks if a number is prime:

void isPrime(int number) {
    int flag = 0;

    for (int i = 2; i < number; ++i) {
        if (number % i == 0) {
            flag = 1;
        }
    }

    if (flag == 0) {
        printf("%d\n", number);
    }
}

Here,

  • We run a loop from 2 to number - 1.

  • In each iteration, we check if number is divisible by i.

  • If it is divisible, we set flag to 1 (meaning it’s not prime).

  • After the loop, if flag is still 0, it means the number is prime, and we print it.

Then, in the main() function, we can call isPrime() for a range of numbers:

int main() {
    
    int x, y;
    scanf("%d %d", &x, &y);
    
    // run the loop from x to y
    // for each iteration of loop call isPrime()
    for (int i = x; i <= y; ++i) {
        isPrime(i);
    }
    
    return 0;
}

Hope this helps and makes the concept clearer! Feel free to reach out if you have more questions or need further assistance.

C
This question was asked as part of the Practice: C Programming course.
Kelish Rai
Expert
last year
Kelish Rai answered

Real numbers are the ones you're already familiar with—like 2, -5, 3.14, 0, or even square roots like √2. These are numbers you can easily picture in everyday life, and they represent measurable quantities, like distances, temperatures, or amounts of money.

Imaginary numbers, on the other hand, are based on something a bit trickier. They're built around the concept of the square root of -1, which we represent as i. Since you can't take the square root of a negative number in the real number system, imaginary numbers fill this gap. For example, 2i or -3i are imaginary numbers.

The real magic happens when you combine real numbers with imaginary numbers. When you do that, you get a complex number, which looks like this: 3 + 2i (a real part, 3, and an imaginary part, 2i).

It’s all just another way to extend the world of numbers and solve more complex problems that you can't with just real numbers.

C
This question was asked as part of the Learn C Programming course.
Maheshwar Sahoo
last year
Maheshwarcountry asked
Kelish Rai
Expert
last year
Kelish Rai answered

A programmer is someone who writes code to instruct computers on how to perform tasks. It’s a bit like giving a computer a set of instructions in a language it understands, so it can run apps, websites, games, or even control hardware.

Programmers use various programming languages to communicate with computers. These languages are designed in a way that allows the computer to "read" and follow the instructions.

C is one of these languages, and it’s well-known for its efficiency and speed, which is why it's been used for so long, especially in system-level programming.

Consider a simple program like this:

#include 

int main() {
    printf("Hello, world!");
    return 0;
}

This program simply tells the computer to print "Hello, world!" to the screen. The programmer writes the instructions in C, and the computer executes them.

C
This question was asked as part of the Learn C Programming course.
Avelile Khwele
last year
Avelilecountry asked
Kelish Rai
Expert
last year
Kelish Rai answered

In this code:

#include 

char* greet() {
    return "Hello";
}

int main() {
    printf("%s Mia\n", greet());
    printf("Next statement");

    return   0;
}

%s is a format specifier used for strings. That means when the program runs, %s is replaced by whatever the greet() function returns.

Since greet() returns the text "Hello", that text takes the place of %s, so the output becomes:

Hello Mia

If you've seen format specifiers like %d (for integers) or %f (for floating-point numbers), %s works the same way—it's just specifically used to print strings.

Here's a closer look at what this line is doing:

printf("%s Mia\n", greet());

This tells the program: Print a string (%s), followed by the word “Mia” and a newline. Replace %s with the return value from the greet() function.

So effectively, it behaves like:

printf("Hello Mia\n");

Also, the greet() function is written as:

char* greet() {
    return "Hello";
}

It returns a string (specifically, a pointer to the string "Hello"), which is exactly what %s expects in a printf call.

C
This question was asked as part of the Learn Recursion With C course.
Kelish Rai
Expert
last year
Kelish Rai answered

Yes, you can write as many single-line comments as you want in your program.

Comments are simply there to help us understand the code better—they're not read or executed by the computer. So whether you're explaining a complex line or just noting something down for later, using many single-line comments is completely fine.

Here’s a quick example:

// This program prints a number
#include 

int main() {
    int number = 5; // Declare a variable
    printf("%d", number); // Print the value of number
    return 0;
}

Each // comment is considered a single-line comment, and you can write one before or after a line of code, or even leave full lines just for comments.

You can also use multi-line comments if you want to write longer explanations that span across several lines. In C, multi-line comments are written like this:

/* This is a multi-line comment.
   You can write across multiple lines,
   and it ends with a closing */
C
This question was asked as part of the Learn C Programming course.
Kelish Rai
Expert
last year
Kelish Rai answered

Here's how you can check with an if...else statement whether a value is a character or not:

if ((alphabet >= 'a' && alphabet <= 'z') || (alphabet >= 'A' && alphabet <= 'Z')) {
    printf("Alphabet");
} else {
    printf("Not an Alphabet");
}

Here,

  • The condition alphabet >= 'a' && alphabet <= 'z' checks if the character is a lowercase letter (from a to z).

  • The condition alphabet >= 'A' && alphabet <= 'Z' checks if it’s an uppercase letter (from A to Z).

  • The || (OR) operator ensures that if either condition is true, the program will print "Alphabet".

  • If neither condition is true, the program prints "Not an Alphabet" in the else block.

To check if it’s a number:

If you want to check if the value is a number (digit 0-9), you can extend the logic like this:

if ((alphabet >= 'a' && alphabet <= 'z') || (alphabet >= 'A' && alphabet <= 'Z')) {
    printf("Alphabet");
} else if (alphabet >= '0' && alphabet <= '9') {
    printf("Number");
} else {
    printf("Special Character");
}

This version will now differentiate between alphabets, numbers, and special characters.

C
This question was asked as part of the Practice: C Programming course.