State the difference between x3 and x[3].
No Answer is Posted For this Question
Be the First to Post Answer
How do you determine if a string is a palindrome?
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.
define function
Function calling procedures? and their differences? Why should one go for Call by Reference?
What are reserved words?
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
What are static variables in c?
what is a constant pointer in C
Explain how can I avoid the abort, retry, fail messages?
write a c program to find the square of a 5 digit number and print the result.
5 Answers Accenture, Sasken, Vimukti Technologies,
What is pass by value in c?
int i=0,j; j=++i + ++i ++i; printf(" %d",j);