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


Please Help Members By Posting Answers For Below Questions

What is far pointer in c?

815


What are valid signatures for the Main function?

703


an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational

816


What is pointers in c with example?

585


Is array name a pointer?

608






How can I split up a string into whitespace-separated fields?

573


The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 …). Records the times. c). Do an analysis of the differences in times and submit it in class.

1637


What is the code in while loop that returns the output of given code?

1333


Explain what is output redirection?

670


Process by which one bit pattern in to another by bit wise operation is?

617


Should I learn c before c++?

624


How can I manipulate individual bits?

611


What is a void * in c?

602


write a program to copy the string using switch case?

2404


Do you have any idea about the use of "auto" keyword?

667