x=2,y=6,z=6
x=y==z;
printf(%d",x)
Answer Posted / jignesh patel
IN THIS QUSTION X=Y==Z IS NOT TRU BEACUSE NOT SECIFY MY
THINK ARE EXPLAIN BELOW
X=2 ,Y=6 ,Z=6
IF(Y==Z)
X=2
PRINTF(" %d ",X);
ELSE
PRINTF("FALSE CONDITION");
OUR QUSTION IS MANY MISTAKE
| Is This Answer Correct ? | 0 Yes | 7 No |
Post New Answer View All Answers
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Explain what does the format %10.2 mean when included in a printf statement?
What are the different categories of functions in c?
What are the disadvantages of external storage class?
What is header file in c?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
What is && in c programming?
What tq means in chat?
How do we make a global variable accessible across files? Explain the extern keyword?
What is build process in c?
diff between exptected result and requirement?
Explain low-order bytes.
What is the difference between strcpy() and memcpy() function in c programming?