int main()
{
int x = (2,3,4);
int y = 9,10,11;
printf("%d %d",x,y);
}
what would be the output?
Post New Answer View All Answers
Give differences between - new and malloc() , delete and free() ?
What is a #include preprocessor?
What do you mean by a local block?
What is fflush() function?
What is || operator and how does it function in a program?
What is union in c?
Why double pointer is used in c?
What is the purpose of main( ) in c language?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
Where are some collections of useful code fragments and examples?
What are comments and how do you insert it in a C program?
What is modifier & how many types of modifiers available in c?
Difference between Shallow copy and Deep copy?
Explain how can type-insensitive macros be created?
How can you convert integers to binary or hexadecimal?