#include<stdio.h>
int main()
{ int i=0,j=1,k=2,m,n=0;
m=i++&&j++&&k++||n++;
printf("%d,%d,%d,%d,%d",i,j,k,m,n);
}
Answers were Sorted based on User's Feedback
What oops means?
Which is the memory area not included in C program? give the reason
What are enums in c?
write a program that print itself even if the source file is deleted?
can we declare a variable in different scopes with different data types? answer in detail
please send me papers for Dy. manager IT , PNB. it would be a great help for me.
What is a static variable in c?
How do you determine the length of a string value that was stored in a variable?
What is the collection of communication lines and routers called?
what is a pointer
4 Answers Bank Of America, TCS,
How do I initialize a pointer to a function?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?