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
What is the scope of static variables in c language?
What is the advantage of using #define to declare a constant?
0 Answers Agilent, ZS Associates,
Explain what is the stack?
What does 4d mean in c?
How can I find the modification date of a file?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
write a program to swap bits in a character and return the value prototype of function char fun (char a, charb flag c) where fun returns a char, char a is a the value char b is the bit to be changed and flag c is the bit value for eg: x=fun(45,7,0) since 45 is 0010 0101 and ow x should contain the value 65 (0110 0101)
1 Answers Bosch, College School Exams Tests,
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
What do you mean by invalid pointer arithmetic?
What is static and auto variables in c?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)