#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 / biren
a=2 b=1 c=1
why plz tell me
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Does * p ++ increment p or what it points to?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What is 1d array in c?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
What are the features of c languages?
How are 16- and 32-bit numbers stored?
Explain the difference between structs and unions in c?
what are the facialities provided by you after the selection of the student.
Explain how do you list files in a directory?
What is the difference between scanf and fscanf?
What is the function of multilevel pointer in c?
what is the significance of static storage class specifier?
Which type of language is c?
Why is c fast?
What is gets() function?