Programology – Telegram
Programology
7.27K subscribers
1.94K photos
771 videos
6 files
2.08K links
Pro·​gram | \ ˈPrō-ˌgram , -grəm \
:A Sequence Of Coded Instructions That Can Be Inserted Into A Mechanism (Such As A Computer)

Who We Are : https://msha.ke/programmerjokesofficial
Download Telegram
Output: Hello All Jokes 11
The printf() function returns the number of characters it has successfully printed. The comma operator evaluates it operands from left to right and returns the value returned by the rightmost expression. First printf(“Hello”) executes and prints “Hello”, the printf(” All Jokes “) executes and prints ” All Jokes “. This printf statement returns 11 which is assigned to i.
👍1
Best GitHub Repository Every Developer should know..
https://instagram.openinapp.co/p-cc-m4snj0bg
1
Comment Output
Options
Anonymous Quiz
53%
A
6%
B
5%
C
36%
D
Output:

error: uninitialized const 'size'
Explanation: At first glance its obvious to think that output will be some garbage value, but it is not the case. Unlike C in C++ any variable declared as constant needs to be initialized at the time of declaration. Hence the given code will not compile and throw the error. It should be noted that the same code will get compiled in ANSI C and will produce output as 0.
2👍2
👍4
Comment Output
Options
Anonymous Quiz
55%
A
10%
B
7%
C
28%
D
👍1
structuredClone(): deeply copying objects in JavaScript

https://2ality.com/2022/01/structured-clone.html
Awesome 😎 CheatSheet Resources
https://instagram.openinapp.co/p-cddyegcj3pk
👍21
Options
Anonymous Quiz
58%
A
18%
B
11%
C
12%
D
Ans. (c)
Explanation: The first list compression will create list as [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] and pop() will return 81. 81 + 19 = 100, whose square root is 10.0 and similarly in 2nd case pop() will return 0 due to the reversed range and integer value of square root of 16 is 4.