How can I change the size of the dynamically allocated array?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Describe the difference between = and == symbols in c programming?

0 Answers  


How to avoid structure padding in C?

8 Answers   Tech Mahindra,


main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }

3 Answers   CSC,


What does != Mean in c?

0 Answers  


What is the purpose of ftell?

0 Answers  


In C programming, how do you insert quote characters (‘ and “) into the output screen?

0 Answers  


main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }

2 Answers  


What's wrong with "char *p; *p = malloc(10);"?

5 Answers  


What is the use of ?: Operator?

0 Answers  


while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.

1 Answers   TCS,


a program that can input number of records and can view it again the record

0 Answers   Accenture,


#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }

4 Answers   HCL,


Categories