Happy Coding - programming in tamil
This channel is for learning programming from basic to full stack developer.
Keep codingπ€©π€©π€© happy Coding πππ
Keep supporting π€π€π€ All the best for learners and future developer's πππ
100 subscribers - September 15 2022
200 subscribers - October 29 2022
Community - November 1 2022
300 subscribers - December 26
400 subscribers - March 09 2023
Happy Coding Tamil
What will be the output of the program?
#include<stdio.h>
int main()
{
int i=3;
switch(i)
{
case 1:
printf("Hello\n");
case 2:
printf("Hi\n");
case 3:
continue;
default:
printf("Bye\n");
}
return 0;
}
2 years ago | [YT] | 6
View 0 replies
Happy Coding Tamil
What will be the output of the program?
#include<stdio.h>
int main()
{
int a = 300, b, c;
if(a >= 400)
b = 300;
c = 200;
printf("%d, %d, %d\n", a, b, c);
return 0;
}
2 years ago | [YT] | 3
View 0 replies
Happy Coding Tamil
What will be the output of the program?
#include<stdio.h>
int main()
{
int k, num = 30;
k = (num < 10) ? 100 : 200;
printf("%d\n", num);
return 0;
}
2 years ago | [YT] | 4
View 0 replies
Happy Coding Tamil
What will be the output of the program?
#include<stdio.h>
int main()
{
int a=0, b=1, c=3;
*((a) ? &b : &a) = a ? b : c;
printf("%d, %d, %d\n", a, b, c);
return 0;
}
2 years ago | [YT] | 1
View 0 replies
Happy Coding Tamil
What will be the output of the program?
#include<stdio.h>
int main()
{
float a = 0.7;
if(0.7 > a)
printf("Hi\n");
else
printf("Hello\n");
return 0;
}
2 years ago | [YT] | 4
View 1 reply
Happy Coding Tamil
What will be the output of the program?
#include<stdio.h>
int main()
{
unsigned int i = 65536; /* Assume 2 byte integer*/
while(i != 0)
printf("%d",++i);
printf("\n");
return 0;
}
2 years ago | [YT] | 4
View 0 replies
Happy Coding Tamil
What will be the output of the program?
#include<stdio.h>
int main()
{
char ch;
if(ch = printf(""))
printf("It matters\n");
else
printf("It doesn't matters\n");
return 0;
}
2 years ago | [YT] | 4
View 0 replies
Happy Coding Tamil
What will be the output of the program, if a short int is 2 bytes wide?
#include<stdio.h>
int main()
{
short int i = 0;
for(i<=5 && i>=-1; ++i; i>0)
printf("%u,", i);
return 0;
}
2 years ago | [YT] | 3
View 0 replies
Happy Coding Tamil
What will be the output of the program?
#include<stdio.h>
int main()
{
int x = 3;
float y = 3.0;
if(x == y)
printf("x and y are equal");
else
printf("x and y are not equal");
return 0;
}
2 years ago | [YT] | 3
View 0 replies
Happy Coding Tamil
What will be the output of the program?
#include<stdio.h>
int main()
{
unsigned int i = 65535; /* Assume 2 byte integer*/
while(i++ != 0)
printf("%d",++i);
printf("\n");
return 0;
}
2 years ago | [YT] | 3
View 0 replies
Load more