C PROGRAMMING
Ir al canal en Telegram
Sin datos
Suscriptores
-824 horas
-347 días
+8830 días
Archivo de publicaciones
Delta Full Stack Web Development Course By Apna College
WHAT YOU'LL LEARN?
--> Complete Frontend Development
--> Complete Backend Development
--> Complete Database - SQL & MongoDB
--> Complete MERN Stack (MongoDB, Express, React, Node)
--> Real Life and Industry Grade Projects
--> LIVE sessions on how to get a job, resume, freelance, open source & more
LECTURES
500+ Video Lectures that cover MERN stack in detail.
LIVE SESSIONS
12+ Hours of Live Sessions on all important topics.
Download Link
Day 1 to Day 40:
https://drive.google.com/drive/folders/1vB6ra0uYfPYfeyEwGklfRbo61lsJEORK?fbclid=IwAR0rRoiY3L7gTQvvaMtJb
Day 41 to Day 55:
https://drive.google.com/drive/folders/1yc_4CHLeoMPEAM0bp3y5n3tyDlfwsuT9?usp=sharing
Or
https://drive.google.com/drive/mobile/folders/1eM71dPcg-Mi0NcOnX6_dhrke5NMUvhaq
✅ Join For More 👇
https://t.me/addlist/QYOZWFI6axE3NzI1
@FreeCourse_0_0
✅ If you get any error or empty file connect with @imabhi3030 @Myhurthearts
What will be the output of the following C code?
#include void main() { int x = 97; char y = x; printf("%c\n", y); }
Output of following C code
#include
int main() { int a = 10, b = 5, c = 5; int d; d = b + c == a; printf("%d", d); }
Logical operators in the C language are evaluated with the short circuit.
What is the type of variable ‘b’ and ‘d’ in the following Java snippet?
int a[], b;
int []c, d;
Output of following C code-
include
void main() { int x = 1, y = 0, z = 5; int a = x && y && z++; printf("%d", z); }
#include <stdio.h> void main() { int x = 0; if (x = 0) printf("Its zero\n"); else printf("Its not zero\n"); }
#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"); }
