Program to find larger of the two numbers without using if-else,while,for,switch
Answers were Sorted based on User's Feedback
Answer / 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 |
wap in c to accept n number display the highest and lowest value
What is the difference between variable declaration and variable definition in c?
how does printf function work
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Explain what are multidimensional arrays?
how to count no of words,characters,lines in a paragraph.
Why do we use static in c?
What is the role of this pointer?
can i know the source code for reversing a linked list with out using a temporary variable?
WAP to convert text into its ASCII Code and also write a function to decode the text given?
Process by which one bit pattern in to another by bit wise operation is?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }