int main()
{
int x = (2,3,4);
int y = 9,10,11;
printf("%d %d",x,y);
}
what would be the output?
Answer Posted / hemant kumar
error
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
What is pointers in c?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
Why isn't it being handled properly?
What header files do I need in order to define the standard library functions I use?
What is const and volatile in c?
Explain what are the advantages and disadvantages of a heap?
How can you invoke another program from within a C program?
In a header file whether functions are declared or defined?
Tell me when would you use a pointer to a function?
Is fortran faster than c?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
What does void main return?
What is #define?