What are the characteristics of arrays in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is #line in c?

0 Answers  


Do you know null pointer?

0 Answers  


What is the difference between if else and switchstatement

0 Answers  


what are the 10 different models of writing an addition program in C language?

0 Answers  


What are reserved words with a programming language?

0 Answers  






What is abstract data structure in c?

0 Answers  


Why do we use pointer to pointer in c?

0 Answers  


Why is it important to memset a variable, immediately after allocating memory to it ?

0 Answers  


how to find the given number is prime or not?

6 Answers   IMS, ING,


void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?

4 Answers   Groupon,


study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above

15 Answers   Accenture, TCS,


#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }

12 Answers   Capital IQ, Sasken,


Categories