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
Define function pointers?
Is c weakly typed?
What is the scope of static variables in c language?
What is the difference between arrays and pointers?
Is c is a middle level language?
How can type-insensitive macros be created?
Do array subscripts always start with zero?
Simplify the program segment if X = B then C ← true else C ← false
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
Difference between pass by reference and pass by value?
What is union and structure?
what is the difference between structure and union?