int main()
{
int x = (2,3,4);
int y = 9,10,11;
printf("%d %d",x,y);
}
what would be the output?
Answer Posted / saranya
you cant initialize values separated by commas for the variables,it may cause errors .so find to initialize properly before setting the values to the variables.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Should a function contain a return statement if it does not return a value?
Is swift based on c?
Explain high-order and low-order bytes.
Explain what are the standard predefined macros?
How to draw the flowchart for structure programs?
Explain what is the difference between functions getch() and getche()?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is the difference between functions getch() and getche()?
what do the 'c' and 'v' in argc and argv stand for?
What is page thrashing?
What functions are used for dynamic memory allocation in c language?
Can one function call another?
What is property type c?
What does char * * argv mean in c?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list