Are pointers really faster than arrays?
No Answer is Posted For this Question
Be the First to Post Answer
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
What is the role of this pointer?
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
List the variables are used for writing doubly linked list program.
Write a small C program to determine whether a machine's type is little-endian or big-endian.
C,c++, Java is all are structural oriented or procedure oriented language..?
What is the total generic pointer type?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What is the use of gets and puts?
1. Write a program to reverse every second word in a given sentence.
write a c program to store and print name,address,roll.no of a student using structures?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this