Welcome to CS Decoded – your one-stop destination for mastering Computer Science for GATE CS.
This channel is created with a simple mission: to decode complex concepts, build strong fundamentals, and help you achieve top ranks in GATE Computer Science & IT.
We cover the complete GATE CS syllabus with concept videos, solved examples, previous year questions, important topics, and real exam strategies – all in a student-friendly way.
Whether you are starting your preparation or aiming for top AIR, CS Decoded is with you at every step.
• ✓ Complete GATE CS Coverage
• ✓ Concepts Explained in Simple & Clear Language
• ✓ Practice Questions, PYQs & Decoded Solutions
• ✓ Strategy, Tips & Motivation for GATE Success
Subscribe to CS Decoded and let's crack GATE CS together!


csdecoded

Void main()
{
Switch(1.0)
{
Case 1: printf(“gate”);
default: printf(“2027”);
}
}

1 month ago | [YT] | 0

csdecoded

Void main()
{
int i=0;
for(++i;++i;++i)
{
printf(“hello”);
}
}

the no of times hello will print?

1 month ago | [YT] | 0

csdecoded

Void main()
{
int a=14;
printf(“%x,a);
}

1 month ago | [YT] | 0

csdecoded

void main()
{
10;
10.4;
“Hello”;
}

1 month ago | [YT] | 0

csdecoded

void main()
{
char ch=130;
printf(“%d”,ch);
}

1 month ago | [YT] | 0

csdecoded

find the output of the code
Void main()
{
int a = 3.0*4%2-3/2.0;
printf(“%d”,a);
}

1 month ago | [YT] | 0