Write a program to find the biggest number of three numbers in c?
No Answer is Posted For this Question
Be the First to Post Answer
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
Why & is used in scanf in c?
What is the relationship between pointers and data structure?
What is a example of a variable?
Explain how do you determine whether to use a stream function or a low-level function?
What is wrong with this program statement? void = 10;
Write a program to show the workingof auto variable.
What are the applications of c language?
Explain continue keyword in c
how to introdu5ce my self in serco
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
Explain what is the difference between the expression '++a' and 'a++'?