1. Can we use the for loop this way?
for(;i>5;)
2. What is the use of pointers?
3. what is array of pointer?
4. What is the difference between file and database?
5. Define data structure?
Answer Posted / ajitha m.s.
1. This method is false and the correct syntax is
for(initialisation;condition;increment/decrement)
example: for(i=0;i<n;i++)
2.pointers are used to specify address of an element
3.Array of pointers are used to point to an array of data
items with each element of the pointer array pointing to
an element of the data array.
4.A file is a collection of bytes stored together.
database is a collection of tables and each table holds
fields as well as records.
5.Data structure is a particular way of storing and
organizing data in a computer.
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
simple program of graphics and their output display
What is structure pointer in c?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What is difference between function overloading and operator overloading?
How many types of errors are there in c language? Explain
Explain what are header files and explain what are its uses in c programming?
What are types of structure?
what will be the output for the following main() { printf("hi" "hello"); }
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Can we replace the struct function in tree syntax with a union?
How we can insert comments in a c program?
Explain what is meant by 'bit masking'?
Tell me when is a void pointer used?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is a loop?