uk
Feedback
C PROGRAMMING

C PROGRAMMING

Відкрити в Telegram

🚩 Channel was restricted by Telegram

Показати більше
Немає даних
Підписники
-824 години
-347 днів
+8830 день
Архів дописів
C Primer Plus, Fifth Edition .pdf5.37 MB

C IN A NUTSHELL.pdf10.45 MB

C For Dummies®, 2nd Edition .pdf7.95 MB

Advanced_Programming_in_the_UNIX.pdf19.65 MB

21st Century C.pdf5.48 MB

What will be the output of the following C code? #include void main() { int x = 97; char y = x; printf("%c\n", y); }
Anonymous voting

Output of following C code #include int main() { int a = 10, b = 5, c = 5; int d; d = b + c == a; printf("%d", d); }
Anonymous voting

Logical operators in the C language are evaluated with the short circuit.
Anonymous voting

What is the type of variable ‘b’ and ‘d’ in the following Java snippet? int a[], b; int []c, d;
Anonymous voting

Output of following C code- include void main() { int x = 1, y = 0, z = 5; int a = x && y && z++; printf("%d", z); }
Anonymous voting

Kuch jyada hi relatable hogya 😂 😢 join for relatable memes 👉 @MEMES_Z0NE

The output of above C code -
Anonymous voting

#include <stdio.h> void main() { int x = 0; if (x = 0) printf("Its zero\n"); else printf("Its not zero\n"); }

What will be the output of the following C code?
Anonymous voting

#include <stdio.h> void main() { int x = 97; char y = x; printf("%c\n", y); }

What will be the output of above C code?
Anonymous voting

#include <stdio.h> int main() { unsigned int i = 23; signed char c = -23; if (i > c) printf("Yes\n"); else if (i < c) printf("No\n"); }

What will be the output of the following C code? #include int main() { int i = 23; char c = -23; if (i < c) printf("Yes\n"); else printf("No\n"); }
Anonymous voting

Relational operators in C cannot be used on ____
Anonymous voting