What is the mean of this statement::
if(int i=0 * i=9)
Answers were Sorted based on User's Feedback
Answer / chevuru
This is not legal. it will result in l-value error
| Is This Answer Correct ? | 1 Yes | 1 No |
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
How to add two numbers without using semicolon at runtime
What are the types of pointers?
How important is structure in life?
What are the types of i/o functions?
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
What is alloca() and why is its use discouraged?
Who is invented by c?
where are auto variables stored? What are the characteristics of an auto variable?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
how to execute with out main in cprogram
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }