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
#include int main() { int x; x = 'a' > 'A'; printf("%d",x); return 0; }
Anonymous voting

Which of the following is invalid variable name?
Anonymous voting

#include int main() { char str[20]; gets(str); printf("%s",str); //input is Happy Coding return 0; } Predict output?
Anonymous voting

Which of the following variable initialization is incorrect?
Anonymous voting

find Output?

#include<stdio.h> int main(){ if(5<10) int a = 10; printf("%d",a); else printf("false"); return 0; }