en
Feedback
Happy Coding

Happy Coding

Open in Telegram

This channel is a learning platform. You will find new youtube video notifications and updates regarding our courses.

Show more
2 142
Subscribers
No data24 hours
-47 days
-2830 days
Posts Archive
Java Notes: Type Casting

Variables in C Programming

If you want to participate on this quiz then you can join it till 6 PM. After 6 this link will be disabled.

Quiz of Data types in C language 👇 https://forms.gle/BPskMwRRUnTK2Dk96

Data Types in C Programming.

This java notes file is containing the notes of Identifiers, Keywords, Data Types, and Constants.

Kindly collect the notes of Java and C language. All notes are covered till previous class.

Java Notes.pdf4.43 KB

+7
5 TRANSLATOR.pdf1.78 KB

C Programming Notes

Happy Diwali everyone!! 🪔✨ May the festival of lights bring joy, prosperity, and love to your life. 🎉🕯️

int Main(){ printf("Happy Coding"); return 0; }
Anonymous voting

Predict output of this C language code. char ch = 'a'; printf("%ld",sizeof(ch));
Anonymous voting

Predict output of this C langauage code. char ch[10]="abc"; printf("%d",sizeof(ch));
Anonymous voting

Predict output of this C language code. printf("%d",sizeof("1000"));
Anonymous voting

Predict output of this C language code? char ch[ ]="abc"; printf("%d",sizeof(ch));
Anonymous voting

Predict Output of this C Code? int a = 2; printf("%d ",sizeof(a + 3)); printf("%d ",sizeof a+3);
Anonymous voting

Predict Output of this C code? printf("%d",sizeof(4.7 + 3));
Anonymous voting

void main(){ int a; a = 5<9; printf("%d",a); }
Anonymous voting

#include int main(){ int x,y,z; x = 9; y = 10; z = x == y; printf("%d",z); return 0; }
Anonymous voting