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 a program have two main functions?
difference between malloc and calloc
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
If the static variable is declared as global, will it be same as extern?
What do you mean by c what are the main characteristics of c language?
How can I write a function that takes a format string and a variable number of arguments?
Explain how do you determine the length of a string value that was stored in a variable?
Difference between strcpy() and memcpy() function?
What are linked lists in c?
What is volatile in c language?
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
Why c is called procedure oriented language?