Computer Science, asked by rr932223, 6 months ago

0
What will be the output of following code?
#include<stdio.h>
int main()
{
int a=4,b=5,c=6;
a=k==c;
printf("%d",a);
return 0;
}​

Answers

Answered by adapavani123
0

Answer:

a=4

b=5

c=6

a=k==c;

("%d",a);

Similar questions