What do you mean by invalid pointer arithmetic?
No Answer is Posted For this Question
Be the First to Post Answer
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
What are the key features in c programming language?
Explain what is the difference between functions abs() and fabs()?
How is a null pointer different from a dangling pointer?
Can true be a variable name in c?
Which command is more efficient? *(ptr+1) or ptr[1]
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
What is the best style for code layout in c?
What are types of preprocessor in c?
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
can we define a function in structure?