#include<stdio.h>
void main()
{
int a,b,c;
a=b=c=1;
c=++a || ++b && ++c;
printf("%d\t%d\t%d",a,b,c);
}

Answer Posted / gopinath.j

2 1 1

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is #include cctype?

574


What is unsigned int in c?

551


What is extern variable in c with example?

534


What is the purpose of macro in C language?

657


What is the use of a static variable in c?

587






using for loop sum 2 number of any 4 digit number in c language

1728


What is static volatile in c?

572


What is d'n in c?

625


What are register variables in c?

571


a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion

2330


Is it acceptable to declare/define a variable in a c header?

678


What is function pointer c?

582


What is the process to create increment and decrement stamen in c?

583


What is the difference between the = symbol and == symbol?

619


In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)

1626