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
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(“%d”,x); --x; } }
Explain what does a function declared as pascal do differently?
How can I prevent another program from modifying part of a file that I am modifying?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
what is the difference between #include<> and #include”…”?
Write down the program to sort the array.
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
What do you mean by dynamic memory allocation in c? What functions are used?
C program to find all possible outcomes of a dice?
Differentiate between #include<...> and #include '...'
Can u return two values using return keyword? If yes, how? If no, why?
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none