Answer Posted / arthy
main()
{
int n,i;
scanf("%d",&n);
int a[n];
}
| Is This Answer Correct ? | 4 Yes | 25 No |
Post New Answer View All Answers
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What is the difference between typedef struct and struct?
How to compare array with pointer in c?
What is cohesion in c?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
Can you please explain the difference between malloc() and calloc() function?
Explain the difference between exit() and _exit() function?
Does sprintf put null character?
What is main () in c language?
What is the -> in c?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Explain Basic concepts of C language?
How can you convert integers to binary or hexadecimal?
Why c is called free form language?
What is unary operator?