h2
C Program to Print Integer Numbers Till N
h2
Prime Numbers using Sieve of Eratosthenes: C Program
h2
Verify The Transaction on Mainnet: XUMM SDK
h2
Send Sign Request As Push Notification: XUMM SDK
h2
Find Prime Numbers from 2 To N using Sieve of Eratosthenes: C Program
h3
Working on array elements
h3
Video Tutorial: Sieve of Eratosthenes Method To Find Prime Numbers: C Program
h3
Source Code: Find Prime Numbers from 2 To N using Sieve of Eratosthenes: C Program
h3
Logic To Find Prime Numbers from 2 To N using Sieve of Eratosthenes
h3
Payload using create() method
h3
Video Tutorial: Send Sign Request As Push Notification: XUMM SDK
h3
Payload using createAndSubscribe() method
h3
Running The Application
h3
Once Payload is Resolved
h3
Fetching user_token from payload_uuidv4
h3
Sending sign request as Push Notification
h3
Stage is set to send sign request as Push Notification
h3
Source Code: To Send Sign Request As Push Notification: XUMM SDK
h3
Installing xrpl-txdata
h3
Video Tutorial: Verify The Transaction on Mainnet: XUMM SDK
h3
Why do we need to verify transaction on main XRP Ledger?
h3
Source Code: Verify The Transaction on Mainnet: XUMM SDK
h3
Transaction verification Code Explained
h3
Switching from Testnet to Mainnet inside XUMM App
h3
xrpl-txdata checks only against live XRP Ledger
h3
That’s it! You made it
h3
Simpler Version of Sieve of Eratosthenes
h3
Video Tutorial: Prime Numbers using Sieve of Eratosthenes: C Program
h3
Input num[N] with numbers 1 to 100
h3
Starting with the second entry in the array, set all its multiples to zero.
h3
Initialized j to pow(num[i], 2) ?
h3
Source Code: Prime Numbers using Sieve of Eratosthenes: C Program
h3
Source Code: Without using math.h library file
h3
Video Tutorial: C Program to Print Integer Numbers Till N
h3
Source Code: C Program to Print Integer Numbers Till N: using For loop
h3
Logic To Print Integer Numbers Till N: using For loop
h3
Source Code: C Program to Print Integer Numbers Till N: using while loop
h3
Logic To Print Integer Numbers Till N: using While loop