main()
{
int i=0;
while(+(+i--)!=0)
i-=i++;
printf(i);
}
Answer Posted / vinod
Error.... Cannot convert int to char error at printf(i). If they replaced printf(i) to printf("%d",i) then it would be -1.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
Explain what does the function toupper() do?
Explain how can you tell whether a program was compiled using c versus c++?
Tell me what is the purpose of 'register' keyword in c language?
What is the difference between ++a and a++?
find the sum of two matrices and WAP for it.
Is it better to use malloc() or calloc()?
What is hashing in c language?
When should the register modifier be used? Does it really help?
What is time complexity c?
What is a constant and types of constants in c?
Is that possible to store 32768 in an int data type variable?
How can a number be converted to a string?
Can we initialize extern variable in c?