How can I change the size of the dynamically allocated array?
No Answer is Posted For this Question
Be the First to Post Answer
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
What is difference between structure and union in c?
Why C language is a procedural language?
write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};
What are the restrictions of a modulus operator?
What is the difference between declaring a variable and defining a variable?
What are pointers?
0 Answers Accenture, Tavant Technologies, Zensar,
Is struct oop?
What is the concatenation operator?
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack
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