#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 / saravanan

0,1,2,0

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

write a program to display all prime numbers

1452


What does c mean before a date?

585


Tell us the use of fflush() function in c language?

635


1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if

3975


Explain which function in c can be used to append a string to another string?

582






Can two or more operators such as and be combined in a single line of program code?

801


An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array

683


What is a program flowchart?

598


how to print the character with maximum occurence and print that number of occurence too in a string given ?

2029


Explain built-in function?

587


What is the difference between %d and %i?

592


What is the use of gets and puts?

599


What is a pointer value and address in c?

630


Explain continue keyword in c

580


What is the difference between void main and main in c?

621