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
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
Who is the main contributor in designing the c language after dennis ritchie?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
How many identifiers are there in c?
What are the advantages of the functions?
What is #include stdio h?
What are different storage class specifiers in c?
Write a program to reverse a string.
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
Write a program to print numbers from 1 to 100 without using loop in c?
What are structural members?
What is the Purpose of 'extern' keyword in a function declaration?
What is calloc() function?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
What are the different file extensions involved when programming in C?