Can we access array using pointer in c language?
No Answer is Posted For this Question
Be the First to Post Answer
how can use subset in c program and give more example
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
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
What is difference between stdio h and conio h?
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
Is c language still used?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
Can we include one C program into another C program if yes how?
What is realloc in c?
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...