Can you please compare array with pointer?
No Answer is Posted For this Question
Be the First to Post Answer
what is computer
what is the little endian and big endian?
what is the diference between pointer to the function and function to the pointer?
Is it possible to initialize a variable at the time it was declared?
wats the diference btwen constant pointer and pointer to a constant.pls give examples.
Write a program to reverse a linked list in c.
what will be maximum number of comparisons when number of elements are given?
Why do we use namespace feature?
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
What is the process to generate random numbers in c programming language?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
Place the #include statement must be written in the program?