C++ Basic 2018 (Batch-2)
765 subscribers
277 photos
11 videos
30 files
74 links
๐ŸŽฏ C++ Basic 2018 (Batch 2) - Pre-Engineering Edition
My second family of coders! ๐Ÿ‘จโ€๐ŸŽ“๐Ÿ‘ฉโ€๐ŸŽ“
Specifically for 2018 pre-engineering students finding C++ challenging.
We turn confusion into clarity, one concept at a time.
Join the struggle bus - destination
Download Telegram
To register for the premium class of C++, ๐Ÿ‘‰ [@ProgrammingWithFaith_bot] ๐ŸŽ‰
โค4
๐Ÿ™Œ
โค2
50 $ แ‹ซแ‹ˆแŒฃ แŠ แˆˆ แ‰คแ‰ฐแˆฐแ‰ฅ high referal แ‹จแˆแˆแŒ‹แˆ แŠฅแŠ•แŒ‚

โœ…100%Legit
๐Ÿ‘‡
https://t.me/earncraft_bot/app?startapp=MTg3NjEyMjAyMV8x
โค2
โšก Simply watch videos to earn money, instant payout for new users!

๐ŸŽฌ Join VideoEarn, earn money by watching videos!
๐Ÿ’ฐ Get $5.00 reward upon registration
๐ŸŽฏ Earn $0.50 per minute watching

๐Ÿ”— Join now: https://t.me/videoearni_bot/videoearn?startapp=E2ED4ADD


@ProgrammingWithFaith2018
โค1
To register for the premium class of C++, ๐Ÿ‘‰ [@ProgrammingWithFaith_bot] ๐ŸŽ‰
โค2
โค2
C++ Basic 2018 (Batch-2)
@ProgrammingWithFaith2018
2. Output: The product displays only if i+1 is an even number, unless there is no output. The array size is 5, but it has only 4 elements; therefore, 0 is automatically added as the fifth element. ๐Ÿงฎ

(product = product * value[i])
- If i=0: product = 1 * 21 = 21. 0 + 1 = 1 is odd, so 21 will not be displayed. โŒ
- If i=1: product = 21 * 3 = 63. 1 + 1 = 2 is even, so 63 will be displayed. โœ…
- If i=2: product = 63 * 7 = 441. 2 + 1 = 3 is odd, so 441 will not be displayed. โŒ
- If i=3: product = 441 * 5 = 2205. 3 + 1 = 4 is even, so 2205 will be displayed. โœ…
- If i=4: product = 2205 * 0 = 0. 4 + 1 = 5 is odd, so there will be no output. โŒ
- If i=5: the condition will be false and it will not enter the loop. ๐Ÿ›‘

FINAL OUTPUT: 63 2205 ๐Ÿ

@ProgrammingWithFaith2018
โค3