Are the expressions * ptr ++ and ++ * ptr same?
No Answer is Posted For this Question
Be the First to Post Answer
Write a pro-gramme to determine whether the number is even or odd?
can v write main() { main(); } Is it true?
Where are local variables stored in c?
what type of questions arrive in interview over c programming?
write a c program to find biggest of 3 number without relational operator?
How many main () function we can have in a project?
hello everybody can we change a the adress of a variabl i mean can i put for exemple for a int *p: &p=6 ?????????
What is the scope of an external variable in c?
what are bitwise shift operators?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
what does exit() do?
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.