while loop contains parts
a) initialisation, evalution of an expression,increment /decrement
b) initialisation, increment/decrement
c) condition evalution
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
please send me the code for multiplying sparse matrix using c
Difference Between embedded software and soft ware?
What is atoi and atof in c?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
Are global variables static in c?
Is main() function predfined or userdefined?
When can a far pointer be used?
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
write a method for an array in which it can display the largest n next largest value.
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
How to create struct variables?