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
What is the relation between # and include<stdio.h>
Explain what is the most efficient way to store flag values?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
write a c program to find biggest of 3 number without relational operator?
what are brk, sbrk?
what is the difference between char * const and const char *?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
Explain what does the function toupper() do?
print a "hello" word without using printf n puts in c language
write a programe returns the number of times the character appears in the string
what is the difference between declaration and definition of a variable or function ?