What is the difference between array and pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is 1d array in c?
what is the difference between. system call and library function?
I have a function which accepts a pointer to an int. How can I pass a constant like 5 to it?
What do you mean by invalid pointer arithmetic?
Explain what is gets() function?
list the no of files created when c source file is compiled
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
how to TOGGLE Nth bit of variable in a MACRO
What is the g value paradox?
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
What is merge sort in c?
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }