How can you increase the size of a dynamically allocated array?
No Answer is Posted For this Question
Be the First to Post Answer
What is context in c?
how do you programme Carrier Sense Multiple Access
Write a program to print fibonacci series using recursion?
can v write main() { main(); } Is it true?
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 output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
what is stack , heap ,code segment,and data segment
Explain what are the advantages and disadvantages of a heap?
What is static and volatile in c?
What is structure padding & expalain wid example what is bit wise structure?
write a program to sort the elements in a given array in c language