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
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Why functions are used in c?
Can stdout be forced to print somewhere other than the screen?
What is meant by type specifiers?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
How can I delete a file?
What do you mean by scope of a variable in c?
What is typedef?
Suggesting that there can be 62 seconds in a minute?
What is the use of a ‘ ’ character?
Can you write a programmer for FACTORIAL using recursion?
C program to find all possible outcomes of a dice?
What are derived data types in c?
In which header file is the null macro defined?