What is the advantage of an array over individual variables?


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

Post New Answer

More C Interview Questions

Table of Sudoku n*n

0 Answers  


write a program to find the given number is prime or not

2 Answers   Accenture, Vasutech,


int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }

2 Answers   Vector,


1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(“%d”,x); --x; } }

7 Answers   CSC,


what is c

4 Answers  


how to get the starting address of file stored in harddisk through 'C'program.

2 Answers   Siemens,


What is #include stdio h?

0 Answers  


main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }

1 Answers   Vector,


write a c program to add two integer numbers without using arithmetic operator +

13 Answers   Value Labs,


2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value

3 Answers   Accenture,


Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays

0 Answers  


Explain how do you declare an array that will hold more than 64kb of data?

0 Answers  


Categories