#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);
}

Answer Posted / santhoshrpai

1,1,2,0,1

Is This Answer Correct ?    41 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?

596


What is multidimensional arrays

637


What is spark map function?

585


what will be the output for the following main() { printf("hi" "hello"); }

9348


What are the types of data structures in c?

606






pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)

2206


Explain #pragma statements.

608


How can I call a function with an argument list built up at run time?

648


What is dynamic dispatch in c++?

563


What is operator promotion?

635


What are reserved words?

662


Write a program which returns the first non repetitive character in the string?

610


How main function is called in c?

633


Difference between Function to pointer and pointer to function

638


Linked list is a Linear or non linear explain if linear how it working as a non linear data structures

1769