Describe the order of precedence with regards to operators in C.
No Answer is Posted For this Question
Be the First to Post Answer
what is the mean of c languages.
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20
What is the difference between c &c++?
Explain how do you view the path?
why u join this call center?
What is mean by data types in c?
When was c language developed?
difference between semaphores and mutex?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
Is that possible to add pointers to each other?
main() { int a; a=++100; printf("%d",a); getch(); }
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]