Answer Posted / manju
It increases the speed of excecution when there is a need
for the usage of arrays....
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
write a progrmm in c language take user interface generate table using for loop?
What are the different types of linkage exist in c?
What language is windows 1.0 written?
What is volatile variable in c with example?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
Can a pointer be volatile in c?
Why static variable is used in c?
What are the 5 elements of structure?
Explain what is meant by 'bit masking'?
What is const volatile variable in c?
What is #define?
What is a stream water?
What is scope rule in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
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