In C programming, what command or code can be used to determine if a number of odd or even?
No Answer is Posted For this Question
Be the First to Post Answer
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
what are you see during placement time in the student.
0 Answers Goldman Sachs, TCS, Tech Solutions,
What is time complexity c?
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
Explain what is the difference between functions getch() and getche()?
Why c is called a middle level language?
application of static variables in real time
A B C D E F G F E D C B A A B C D E F F E D C B A A B C D E E D C B A A B C D D C B A A B C C B A A B B A A A
what is difference between declaring the pointer as int and char in c language?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }