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 |
Write a program for finding factorial of a number.
how to swap 2 numbers in a single statement?
What are enums in c?
In c programming language, how many parameters can be passed to a function ?
how to print this pyramid * * * * * * * * * * * * *
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
I have seen function declarations that look like this
c pgm count no of lines , blanks, tabs in a para(File concept)
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What is difference between static and global variable in c?
Explain in detail how strset (string handling function works )pls explain it with an example.