Technotip
Technotip
  • Видео 662
  • Просмотров 10 703 534
C Program to Print Integer Numbers Till N
technotip.com/9471/c-program-to-print-integer-numbers-till-n/
Write a C program to print integer numbers till user entered limit(num).
Natural numbers are all numbers from 1, 2, 3, 4, 5, … They are the numbers you usually count and they will continue on into infinity.
Whole numbers are all natural numbers including 0.
e.g. 0, 1, 2, 3, 4, 5, …
Integers numbers include all whole numbers and their negative counterpart
e.g. …, -4, -3, -2, -1, 0,1, 2, 3, 4, 5, …
C Programming Interview / Viva Q&A List
technotip.com/6378/c-programming-interview-viva-qa-list/
C Programming: Beginner To Advance To Expert
technotip.com/6086/c-programming-beginner-to-advance-to-expert/
Join this channel to get access to perks...
Просмотров: 6 142

Видео

Prime Numbers using Sieve of Eratosthenes: C Program
Просмотров 8 тыс.3 года назад
technotip.com/9436/prime-numbers-using-sieve-of-eratosthenes-c-program/ Implement in a c program the following procedure to generate prime numbers from 1 to 100. This procedure is called Sieve of Eratosthenes. Step 1: Fill an array num[100] with numbers from 1 to 100. Step 2: Starting with the second entry in the array, set all its multiples to zero. Step 3: Proceed to the next non-zero element...
Sieve of Eratosthenes Method To Find Prime Numbers: C Program
Просмотров 3,9 тыс.3 года назад
technotip.com/9414/find-prime-numbers-from-2-to-n-using-sieve-of-eratosthenes-c-program/ Lets write a C program to find prime numbers from 2 to N, using Sieve of Eratosthenes method. Important Note We are working on index numbers here. Array elements will have only 2 values: 1 or 0. Wherever the value of array element is 1, that means it’s position/index number is prime orelse its composite num...
Verify Payload Result on XRP Legder: XUMM SDK
Просмотров 1,1 тыс.3 года назад
technotip.com/9377/verify-the-transaction-on-mainnet-xumm-sdk/ In this video tutorial we'll show you how to pass the XRP transaction ID to xrpl-txdata library and verify the transaction on XRP Ledger mainnet. We shall also see how we can check the balance changes on the main net XRP ledger. To avoid situations listed below, we check the balance changes on XPP ledger on mainnet and verify it aga...
Send XUMM Sign Request As Push Notification
Просмотров 1,4 тыс.3 года назад
technotip.com/9370/send-sign-request-as-push-notification-xumm-sdk/ In this video tutorial we will show you how to fetch user_token once the user signs the first sign request. Once we get the user_token we can send future sign requests as push notification directly to the particular users phone, which has XUMM app installed. Btw, user_token, options, custom_meta etc are specific to XUMM platfor...
Your First XRPL Payload via XUMM SDK
Просмотров 1,5 тыс.3 года назад
technotip.com/9358/your-first-payload-xumm-sdk/ Now that we have established a connection to the XUMM platform using the XUMM SDK, it is time to actually send something that we can sign. We will send a "transaction template" to the XUMM platform, called a Payload. XRP ledger transaction specifications: xrpl.org/transaction-types.html Join this channel to get access to perks: ruclips.net/channel...
Send Ping Request To XUMM Platform and Get Application Details
Просмотров 5423 года назад
technotip.com/9353/send-ping-request-to-xumm-platform-and-get-application-details/ In this video tutorial we shall see how we can get connected to XUMM platform and ping the XUMM platform and get the application details like application name, callback URL etc. While following these video tutorials, occasionally you may have to create new XRPL accounts and make transactions and check the results...
Prepare Your Project & Start Coding - XUMM SDK
Просмотров 8933 года назад
technotip.com/9343/prepare-your-project-start-coding-xumm-sdk/ In this video tutorial I'm showing how to import XUMM SDK module into our node project. And we're write some boilerplate code, which we will continue to use in up coming video tutorials. In this video I'm showing you how to use to XUMM SDK and connect using our applications app id and app secret. Required Software 1. Visual Studio C...
Get Your XUMM API Credentials
Просмотров 1,8 тыс.3 года назад
technotip.com/9335/get-your-xumm-api-credentials/ apps.xumm.dev/ Create new application and generate App ID and App Secret for your project, whch uses XUMM API. This video tutorial shows how to use the XUMM Developer Dashboard. List of all XUMM / XRPL Development Video Tutorials: technotip.com/9332/working-with-xumm-sdk-api-xrpl/ While following these video tutorials, occasionally you may have ...
C Program To Find First and Second Biggest Element In An Array using Recursion
Просмотров 1,2 тыс.3 года назад
technotip.com/9229/c-program-to-find-first-and-second-biggest-element-in-an-array-using-recursion/ Lets write a C program to find first and second biggest element/number in an array, without sorting it, and by using recursion. Example: Expected Output Enter 5 integer numbers 5 2 6 4 3 First Big: 6 Second Big: 5 C Programming Interview / Viva Q&A List technotip.com/6378/c-programming-interview-v...
C Program To Find Smallest Element in An Array using Pointers
Просмотров 6 тыс.3 года назад
technotip.com/9221/c-program-to-find-smallest-element-in-an-array-using-pointers/ Write a c program using pointers to find the smallest number in an array of 25 integers. Pointers: A pointer variable is a variable which holds the address of another variable, of its own type. Important Note: 1. Array elements are always stored in contiguous memory location. 2. A pointer when incremented always p...
C Program To Find Smallest Element in An Array using Recursion
Просмотров 6 тыс.3 года назад
technotip.com/9207/c-program-to-find-smallest-element-in-an-array-using-recursion/ Write a C program to find smallest element / number in an array using pointers and recursion. We have covered both these logic in this video tutorial 1. Recursive function with no return type. 2. Recursive function with return type. Example: Expected Output Enter 5 integer numbers 5 2 6 4 3 Smallest Element In Th...
C Program To Find Biggest Element In An Array using Recursion
Просмотров 5 тыс.3 года назад
technotip.com/9184/c-program-to-find-biggest-element-of-an-array-using-recursion/ Write a C program to find biggest element / number in an array using pointers and recursion. We have covered both these logic in this video tutorial 1. Recursive function with no return type. 2. Recursive function with return type. Example: Expected Output Enter 5 integer number 5 2 6 4 3 Biggest Element in the ar...
C Program To Count Positive, Negative, Even And Odd Numbers In An Array
Просмотров 14 тыс.3 года назад
technotip.com/9161/c-program-to-count-positive-negative-even-and-odd-numbers-in-an-array/ Twenty-five numbers are entered from the keyboard into an array. Write a program to find out how many of them are positive, how many are negative, how many are even and how many odd. Important Note Most of the time 0 is considered as even number, as it has odd numbers on either side of it i.e., 1 and -1. A...
C Programming: Arrays, Pointers and Functions
Просмотров 10 тыс.3 года назад
technotip.com/9116/c-programming-arrays-pointers-functions/ In today’s video tutorial lets learn more about arrays and pointers, and how we can use them with functions. Note: This video tutorial is very important, so please make sure to watch the video till the end and make some notes. These are the basic concepts of arrays, pointers and functions. If you miss this, you’ll find other programs c...
C Program To Display Elements of Array In Reverse Order using Pointers
Просмотров 23 тыс.3 года назад
C Program To Display Elements of Array In Reverse Order using Pointers
C Program To Find Largest Difference Between Two Elements of An Array
Просмотров 3,3 тыс.3 года назад
C Program To Find Largest Difference Between Two Elements of An Array
C Program To Search A Number And Count Its Occurrence In An Array
Просмотров 35 тыс.3 года назад
C Program To Search A Number And Count Its Occurrence In An Array
Join Me In The Good Cause
Просмотров 4204 года назад
Join Me In The Good Cause
C Program To Segregate 0's and 1's In An Array using Swapping Method
Просмотров 1,2 тыс.4 года назад
C Program To Segregate 0's and 1's In An Array using Swapping Method
C Program To Segregate 0's and 1's In An Array using Counting Method
Просмотров 1,8 тыс.4 года назад
C Program To Segregate 0's and 1's In An Array using Counting Method
C program To Count and Display Even and Odd Elements of An Array
Просмотров 34 тыс.4 года назад
C program To Count and Display Even and Odd Elements of An Array
Follow Technotip.com on Google News App
Просмотров 2194 года назад
Follow Technotip.com on Google News App
C Program To Delete Element of An Array at Specified Position
Просмотров 7 тыс.4 года назад
C Program To Delete Element of An Array at Specified Position
C Program To Insert New Element At Specified Position of An Array
Просмотров 6 тыс.4 года назад
C Program To Insert New Element At Specified Position of An Array
C Program To Shift Elements of An Array by n Position
Просмотров 35 тыс.4 года назад
C Program To Shift Elements of An Array by n Position
C Program To Re-arrange Even and Odd Elements of An Array
Просмотров 5 тыс.4 года назад
C Program To Re-arrange Even and Odd Elements of An Array
C Program To Divide/Split An Array Into Two At Specified Position
Просмотров 16 тыс.4 года назад
C Program To Divide/Split An Array Into Two At Specified Position
C Program To Split Even and Odd Elements of An Array Into Two Arrays
Просмотров 13 тыс.4 года назад
C Program To Split Even and Odd Elements of An Array Into Two Arrays
C Program To Count Number of Positive, Negative and Zeros In An Array
Просмотров 15 тыс.4 года назад
C Program To Count Number of Positive, Negative and Zeros In An Array

Комментарии

  • @MounikaMounika-m8x
    @MounikaMounika-m8x 2 дня назад

    Bro which app are u using

    • @technotipDOTorg
      @technotipDOTorg 2 дня назад

      Code::Blocks technotip.com/6094/the-best-ide-for-c-programming/

  • @user-ss9dw8re7f
    @user-ss9dw8re7f 9 дней назад

    Thanks

  • @swagatadas1523
    @swagatadas1523 10 дней назад

    Thank you very much sir ❤ Hare Krishna

  • @Santhi452
    @Santhi452 13 дней назад

    Super you did a great job

  • @TirumalaraoKarumajji-hn1ot
    @TirumalaraoKarumajji-hn1ot 15 дней назад

    Bro no seeing a video bro

  • @aglitchinthematrix07
    @aglitchinthematrix07 15 дней назад

    Broo has a whole merch. Damn

  • @satishsharman272
    @satishsharman272 18 дней назад

    Htt nikal

  • @debarthasaikia5561
    @debarthasaikia5561 20 дней назад

    If the number are fractional like 49.23 then

  • @ENTERTAINMENT-ih3ed
    @ENTERTAINMENT-ih3ed 20 дней назад

    WRONG

  • @saikatbenjamin
    @saikatbenjamin 22 дня назад

    excellent

  • @tapannayak9603
    @tapannayak9603 26 дней назад

    Thanks

  • @user-jr6tb8nx4j
    @user-jr6tb8nx4j Месяц назад

    Then What is use of this novalidate I little bit confuse wr this is used

  • @SHA-G-MAS
    @SHA-G-MAS Месяц назад

    Good... 😊😊 Explanation... 🎉🎉🎉 Brother.. ✍️✍️✍️

  • @ramkumarramkumarji1956
    @ramkumarramkumarji1956 Месяц назад

  • @amruthayogeesh805
    @amruthayogeesh805 Месяц назад

    Thank you so much brother it was really very useful ☺

  • @Useryoutubeg
    @Useryoutubeg Месяц назад

    Thankusomuch😂😂😂❤❤❤❤

  • @user-tg7vi8ui7h
    @user-tg7vi8ui7h Месяц назад

    👎👎👎👎👎

  • @Computersciencelearner-y5y
    @Computersciencelearner-y5y Месяц назад

    Thank youvso much I was so confused in clss with this topic

  • @user-rt2ej5db4q
    @user-rt2ej5db4q Месяц назад

    I think this is else if ladder

  • @Learner542
    @Learner542 Месяц назад

    Anyone here in 2024😂

  • @grifffithcodes
    @grifffithcodes Месяц назад

    kuch nhi samjah aaya

  • @ragisivakrishna
    @ragisivakrishna Месяц назад

    good explanation

  • @vitorsanto1479
    @vitorsanto1479 2 месяца назад

    I have a question. I wanted to make a forum type site, I would like that after the user is authenticated show on a page as their data such as post, videos, message that he put on the site (through a form) how would I do this?

  • @HarshithakHarshi-jo9ly
    @HarshithakHarshi-jo9ly 2 месяца назад

    Super sir❤❤

  • @MotivaPlay402
    @MotivaPlay402 2 месяца назад

    Which plateform do you use

    • @mayanksharma8027
      @mayanksharma8027 Месяц назад

      It is code blocks

    • @technotipDOTorg
      @technotipDOTorg Месяц назад

      Yes its code::blocks technotip.com/6094/the-best-ide-for-c-programming/

  • @AmanChahal-rz6rs
    @AmanChahal-rz6rs 2 месяца назад

    Count- - hona chie

  • @shravansingh3527
    @shravansingh3527 2 месяца назад

    u r amazing man,....lots of ❤❤

  • @L.T_GHOST_0.7
    @L.T_GHOST_0.7 2 месяца назад

    Thank you so much sir for a great session it's really best of best than other yt session ❤

  • @lindinalvabaptistadejesus6582
    @lindinalvabaptistadejesus6582 2 месяца назад

    thank you .

  • @MargaritaMenezes
    @MargaritaMenezes 2 месяца назад

    Wow. Understood ❤

  • @Shortvideomakingkannada
    @Shortvideomakingkannada 2 месяца назад

    Some error is coming

  • @Shortvideomakingkannada
    @Shortvideomakingkannada 2 месяца назад

    This is a wrong way

  • @shravansingh3527
    @shravansingh3527 2 месяца назад

    watching this vid after 10 years of him recording. still it's nice vid mahn❤❤

  • @sebinjoseph1365
    @sebinjoseph1365 2 месяца назад

    this is wrong code,the correct code is #include <stdio.h> int main() { int a, b, c; printf("Enter 3 numbers to compare: "); scanf("%d%d%d", &a, &b, &c); if (a >= b && a >= c) { printf("%d, a is the greatest ", a); } else if (b >= a && b >= c) { printf("%d, b is the greatest ", b); } else { printf("%d, c is the greatest ", c); } return 0; }

  • @kasonbear_
    @kasonbear_ 2 месяца назад

    Foreshadowing

  • @sern0132
    @sern0132 2 месяца назад

    Best explanation! Ty so much

  • @obrenvukasovic7137
    @obrenvukasovic7137 3 месяца назад

    what is place here?

  • @mohamednayeemthajul9767
    @mohamednayeemthajul9767 3 месяца назад

    Legendary teaching 🔥🔥🔥

  • @Udaykeerthi1999
    @Udaykeerthi1999 3 месяца назад

    Thankyou

  • @yumi7868
    @yumi7868 3 месяца назад

    tutorial c++ prime num 10 to50

  • @mish_fa
    @mish_fa 3 месяца назад

    Thanks

  • @mish_fa
    @mish_fa 3 месяца назад

    ❤❤❤❤

  • @wolfsupernova-fv4jd
    @wolfsupernova-fv4jd 3 месяца назад

    thank you, this is the best explanation on youtube on how arc works

  • @Ankit_Jarvis
    @Ankit_Jarvis 3 месяца назад

    bhai tu khud pahle sure ho ja konsa method batana hai tujhe na dry working show kiya aur na kuch bs different methods dikha rha hai.

  • @AjaySingh-xf3re
    @AjaySingh-xf3re 3 месяца назад

    Sir can we take a=-1 and b=1 and the c=a+b a=b,b=c and then we can print c for (int i=1;i<=limit;i++)

  • @factworldpresents5232
    @factworldpresents5232 3 месяца назад

    Where is decimal number input While(num) X While (num!=0) correct

  • @ffm_Nitish
    @ffm_Nitish 3 месяца назад

    🎉

  • @ffm_Nitish
    @ffm_Nitish 3 месяца назад

    🎉

  • @SumitKamble-vn4yc
    @SumitKamble-vn4yc 3 месяца назад

    And Its result after Searching?

  • @abrahmanmamnoon6685
    @abrahmanmamnoon6685 3 месяца назад

    hhh 10 years ago node,express