main()
{
int i = 10;
printf(" %d %d %d
", ++i, i++, ++i);
}
No Answer is Posted For this Question
Be the First to Post Answer
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
What is the use of the restrict keyword?
How can I run c program?
What does %d do?
simple program for virtual function?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
In a switch statement, what will happen if a break statement is omitted?
What is a method in c?
What is the purpose of 'register' keyword in c language?
Write a routine that prints out a 2-D array in spiral order!
implement general tree using link list