int main()
{
int x = (2,3,4);
int y = 9,10,11;
printf("%d %d",x,y);
}
what would be the output?
Post New Answer View All Answers
Not all reserved words are written in lowercase. TRUE or FALSE?
Explain About fork()?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Is it acceptable to declare/define a variable in a c header?
Explain what is the purpose of "extern" keyword in a function declaration?
How can I read a binary data file properly?
Is malloc memset faster than calloc?
How are strings stored in c?
Explain how do you list files in a directory?
What is your stream meaning?
What is the difference between Printf(..) and sprint(...) ?
What is the difference between int main and void main?
What is a function in c?
What is the g value paradox?
What are the types of operators in c?