if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True"
a) Never
b) Always
c) When the value of i is 0
d) all of the above
No Answer is Posted For this Question
Be the First to Post Answer
Can include files be nested? How many levels deep can include files be nested?
What is void pointers in c?
Is it better to use malloc() or calloc()?
How many types of arrays are there in c?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
What is structure data type in c?
write a c program to convert fahrenheit to celsius?
what are the advantages & disadvantages of unions?
how to find string length wihtout using c function?
How can a program be made to print the name of a source file where an error occurs?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.