if the area was hit by a virus and so the decrease in the
population because of death was x/3 and the migration from
other places increased a population by 2x then annually it
had so many ppl. find our the population in the starting.
What is the meaning of typedef struct in c?
what is the differnce between AF_INET and PF_INET?
5 Answers Systems Plus, Wipro,
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
what does data structure mean?
Code for calculating square root without using library function, of math.h
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
write a c program to store and print name,address,roll.no of a student using structures?
What is the difference between void main and main in c?