Can we increase size of array in c?


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

Post New Answer

More C Interview Questions

What is the advantage of an array over individual variables?

0 Answers  


Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain

2 Answers  


what is difference between overriding and overloading?

1 Answers  


How can you convert integers to binary or hexadecimal?

0 Answers  


What is the purpose of Scanf Print, getchar, putchar, function?

3 Answers  


What is the maximum no. of arguments that can be given in a command line in C.?

0 Answers   HCL,


Which is more efficient, a switch statement or an if else chain?

0 Answers  


what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }

4 Answers  


What is key word in c language?

4 Answers   ABC,


2. Write a function called hms_to_secs() that takes three int values&#8212;for hours, minutes, and seconds&#8212;as arguments, and returns the equivalent time in seconds.. Create a program that exercises this function by repeatedly obtaining a time value in hours, minutes, and seconds from the user (format 12:59:59), calling the function, and displaying the value of seconds it returns.

5 Answers   TCS,


Write program to remove duplicate in an array?

0 Answers  


c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above

0 Answers  


Categories