Happy Coding
Open in Telegram
This channel is a learning platform. You will find new youtube video notifications and updates regarding our courses.
Show more2 142
Subscribers
No data24 hours
-47 days
-2830 days
Posts Archive
2 142
If you want to participate on this quiz then you can join it till 6 PM. After 6 this link will be disabled.
2 142
This java notes file is containing the notes of Identifiers, Keywords, Data Types, and Constants.
2 142
Kindly collect the notes of Java and C language. All notes are covered till previous class.
2 142
Happy Diwali everyone!! 🪔✨ May the festival of lights bring joy, prosperity, and love to your life. 🎉🕯️
2 142
Predict output of this C language code.
char ch = 'a'; printf("%ld",sizeof(ch));
2 142
Predict output of this C langauage code.
char ch[10]="abc"; printf("%d",sizeof(ch));
2 142
Predict output of this C language code.
printf("%d",sizeof("1000"));
2 142
Predict output of this C language code?
char ch[ ]="abc"; printf("%d",sizeof(ch));
2 142
Predict Output of this C Code?
int a = 2; printf("%d ",sizeof(a + 3)); printf("%d ",sizeof a+3);
2 142
#include
int main(){
int x,y,z; x = 9; y = 10; z = x == y; printf("%d",z); return 0; }
