What are the 5 types of organizational structures?
No Answer is Posted For this Question
Be the First to Post Answer
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
What is the sizeof () operator?
What is the role of this pointer?
print the table 5 in loops
What does int main () mean?
how to display 2-D array elements in spiral
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
How can I invoke another program or command and trap its output?
What is a class?
What is formal argument?
char p="data"; printf(p);
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table