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
#include
int main() {
int x; x = 'a' > 'A'; printf("%d",x); return 0; }
2 142
#include
int main() {
char str[20]; gets(str); printf("%s",str); //input is Happy Coding return 0; } Predict output?
2 142
#include<stdio.h>
int main(){
if(5<10)
int a = 10;
printf("%d",a);
else
printf("false");
return 0;
}
