What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answers were Sorted based on User's Feedback
Answer / chandrakala
error: i doesn't declared in a correct way
int i=1
| Is This Answer Correct ? | 0 Yes | 0 No |
write a program to check whether a number is Peterson or not.
What are the basic data types associated with c?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What is the full form of getch?
How can I list all of the predefined identifiers?
YBJBU6
plssssss help !!....using array.. turbo c.. create a program that will accept number of words to be consored. .a word must not exceed 10 characters long .the text to be entered will be no longer than 200 characters .there will be no 10 words example: enter number of words to be censor: 5 enter words to censor: windows office microsoft bill gates enter text to censor: bill gates founded microsoft and makes office and windows sample output: <consored> <censored> founded <censored> and makes <censored> and <censored>
What is #include stdlib h?
What are the types of pointers?
Discuss similarities and differences of Multiprogramming OS and multiprocessing OS?
What does volatile do?
What is restrict keyword in c?