Program to find larger of the two numbers without using if-else,while,for,switch
Answer Posted / vara
#include<stdio.h>
void main()
{
int a=4,b=5;
a>b?printf("a is greater than big"):b is pig
}
| Is This Answer Correct ? | 10 Yes | 25 No |
Post New Answer View All Answers
Explain the ternary tree?
how can f be used for both float and double arguments in printf? Are not they different types?
Explain what are multidimensional arrays?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
Do you know the use of fflush() function?
Write a program to print factorial of given number without using recursion?
What is anagram in c?
When should you use a type cast?
What is the use of void pointer and null pointer in c language?
What is 1f in c?
What is use of pointer?
Can you think of a logic behind the game minesweeper.
What is structure of c program?
What is this infamous null pointer, anyway?