what is array?
Answers were Sorted based on User's Feedback
Answer / celisty aragon
is a systematic arrangement of objects, usually in rows and
columns.
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / gunasekhar
array is an collection of elements with diff data type
Is This Answer Correct ? | 67 Yes | 111 No |
What is the difference between scanf and fscanf?
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
What are the different types of pointers used in c language?
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
program for validity of triangle from 3 side
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
pgm to find middle element of linklist(in efficent manner)
Table of Sudoku n*n
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
Why & is used in scanf in c?
What is int main () in c?