main()
{
inta=10,b=20;
a>=5?b=100:b=200;
printf("%d
",b);
}
No Answer is Posted For this Question
Be the First to Post Answer
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
Is it better to use malloc() or calloc()?
What is a newline escape sequence?
What are data types in c language?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
What are the 4 types of organizational structures?
What is typedef?
Why do we use pointer to pointer in c?
Find greatest number out of 10 number without using loop.
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
write a program to display the numbers having digit 9 in the given range from 1 to 100
What is a list in c?