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

simple program of graphics and their output display

0 Answers   Elysium,


What are the advantages of using macro in c language?

0 Answers  


#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?

6 Answers   Ramco,


What is the most efficient way to count the number of bits which are set in a value?

4 Answers  


what is compiler

6 Answers  






When would you use a pointer to a function?

0 Answers  


1 1 12 21 123 321 12344231 how i creat it with for loop??

1 Answers  


#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }

3 Answers   Zoho,


what is the structure?

4 Answers   TCS,


write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?

4 Answers  


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


Write a C program to fill a rectangle using window scrolling

1 Answers  


Categories