Найденные страницы с тегом loop всего 35659

Selbe Dittman, Author at Search Engine Land

Selbe Dittman is Digital Advertising Specialist at Closed Loop. With a passion for helping others, Selbe is an experienced paid media expert with a focus on optimizing and creating digital ad campaigns. As an advocate, she empowers clients to actualize their goals by providing a collaborative environment where they feel supported, heard and prioritized. Her expertise includes creating compelling ad copy, analyzing data and improving performance. 

Tool Command Language | Luxoft Training

TCL is a scripting language similar with other shell languages (Bourne Shell, C Shell and Perl) and with C-like syntax, especially for loop structures, funct…

NEW

C Program: Reverse a number with a Do-While loop

Learn how to reverse a number using a C program with a do-while loop. Understand the process step by step with examples and code.

NEW

C Program: Calculating compound interest with User input Loop

Learn how to use a C program to calculate compound interest with a do-while loop, allowing users to input principal, rate, and time multiple times.

NEW

C Program: Counting digits in an integer using Do-While Loop

Learn how to use a C program with a do-while loop to count the number of digits in a given integer, handling special cases like zero.

NEW

C Program: Calculate sum of Prime numbers with Do-While Loop

Explore a C program using a do-while loop to calculate and print the sum of prime numbers up to a user-specified limit, e.g., 50.

NEW

C Program: Password authentication with Do-While Loop

Learn how to create a C program for password authentication using a do-while loop. Enter the password until the correct one is provided for access.

NEW

C Program: Sum of squares of digits with Do-While Loop

Learn to write a C program that calculates the sum of the squares of digits in a positive integer using a do-while loop. Example output included.

NEW

C Program: Guess the number game with Do-While Loop

Explore a C program that generates a random number between 1 and 100. Challenge users to guess it with a do-while loop. Check out the example output.

NEW

C Program: Calculate sum of entered numbers with Do-While Loop

Learn to write a C program using a do-while loop to prompt the user for numbers until a negative number is entered. Calculate and print the sum of entered numbers.

NEW

C Program: Sum of positive integers using Do-While Loop

Learn to write a C program that calculates the sum of positive integers entered by the user using a do-while loop. Step-by-step explanation and example output.

NEW

C Program to Print numbers using Do-While Loop

Learn how to write a C program to print numbers in ascending and descending order from 1 to 10 using a do-while loop. Understand the step-by-step explanation.

NEW

C Programming: Do-While Loop Exercises with Solutions

Explore C programming exercises with solutions on do-while loops. Practice various coding challenges, including number manipulation and stack operations

NEW

C Program: Print multiplication table for positive integer

Learn how to write a C program that prompts users to enter a positive integer and prints its multiplication table up to 10 using a while loop.

NEW

C Program: Print first 10 Fibonacci numbers - While loop

Explore a C program using a while loop to generate and print the first 10 Fibonacci numbers. Understand the logic behind Fibonacci sequence.

NEW

C Program: Check Palindrome using While loop

Explore a C program to check if a given number is a palindrome using a while loop. Understand the logic behind reversing and comparison.

NEW

C Program: Sum of Cubes of even numbers (up to 20)

Learn to code a C program calculating the sum of cubes for even numbers up to 20 using a while loop. Explore the logic behind.

NEW

C Program: User-Input validation with While loop

Learn to code a C program that prompts users for a username, using a while loop to ensure it's at least 8 characters long.

NEW

Calculate Factorial in C: User-Entered positive integer

Learn how to write a C program that prompts the user for a positive integer, then calculates and prints its factorial using a while loop.

NEW

C Program: Guess the number game using while loop

Explore a C program that challenges users to guess a randomly generated number between 1 and 20. Use a while loop for multiple attempts.

NEW

C Program: Detect duplicate numbers using while loop

Learn how to write a C program that prompts users for numbers until they input a duplicate. Utilize a while loop to efficiently check for duplicates.

NEW

C Program: Calculate product of numbers 1 to 5 using while loop

Learn to write a C program using a while loop to calculate and print the product of numbers from 1 to 5, demonstrating loop control.

NEW

C Program: Calculate sum of positive integers using while loop

Learn to write a C program that prompts users for integers until they enter 0. Calculate and print the sum of positive integers entered.

NEW

C Program: Print numbers in a range using a While loop

Learn to write a C program using two while loops to print numbers sequentially from 0 to 10 and then in reverse from 10 to 0.

NEW

C Programming: While Loop Exercises with Solutions

Enhance your C programming skills with these while loop exercises. Practice solutions for various tasks, including number printing, sum calculation, factorial, username validation, and more