without using arithmatic operator solve which number is
greater??????????
Answer / niranjan vg
use relational operator
(a > b)
this is not a arithematic operator.
or you can use conditional operator
(a>b)?a:b;
| Is This Answer Correct ? | 25 Yes | 3 No |
can we print any string in c language without using semicolon(;)(terminator) in whole program.
why effort estimation is important?
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it. i have done maximum par but i m findind problem in the commented area. please help...
How can you determine the maximum value that a numeric variable can hold?
State the difference between realloc and free.
where are auto variables stored? What are the characteristics of an auto variable?
What are valid operations on pointers?
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
will the program compile? int i; scanf(“%d”,i); printf(“%d”,i);
what is meant by the "equivalence of pointers and arrays" in C?
write a program for the normal snake games find in most of the mobiles.
what are the different storage classes in c?