Is null always equal to 0(zero)?
No Answer is Posted For this Question
Be the First to Post Answer
What is the role of this pointer?
What will be the output of x++ + ++x?
program in c to print 1 to 100 without using loop
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
What is file in c language?
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
wat are the two methods for swapping two numbers without using temp variable??
Identify the operators that is not used with pointer a. && b. # c. * d. >>
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
What is an volatile variable?