WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?

Answer Posted / shashank sharma

it depend on data type

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the 4 types of programming language?

576


List some applications of c programming language?

545


What happens if you free a pointer twice?

604


Explain what are the standard predefined macros?

647


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

1953






Write a code on reverse string and its complexity.

602


How can I pad a string to a known length?

608


What does it mean when the linker says that _end is undefined?

625


There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?

815


I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...

9651


pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)

2197


In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)

1629


What are loops c?

614


Write a program to print "hello world" without using a semicolon?

591


What is the correct code to have following output in c using nested for loop?

609