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
0
Answer:
a=4
b=5
c=6
a=k==c;
("%d",a);
Similar questions