void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answer Posted / swetha
232
| Is This Answer Correct ? | 8 Yes | 8 No |
Post New Answer View All Answers
What are identifiers in c?
Define recursion in c.
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Write a program to check whether a number is prime or not using c?
write a program to find out prime number using sieve case?
Can we compile a program without main() function?
What are the advantages of the functions?
How many bytes are occupied by near, far and huge pointers (dos)?
What is #include stdlib h?
what will be the output for the following main() { printf("hi" "hello"); }
Who invented bcpl language?
How can I delete a file?
Write a code to remove duplicates in a string.
How do I get an accurate error status return from system on ms-dos?
Are the variables argc and argv are always local to main?