main()
{
int i = 1;
int num[] = {1,2,3,4};
num[i] = i++;
printf("%d", num[i]);
}
what will be the output?
}
Answer Posted / vinay
Idiots please don't give wrong answers. While you answer
the questions, please check the output practically and post
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Is boolean a datatype in c?
Explain how can I prevent another program from modifying part of a file that I am modifying?
Explain what is the purpose of "extern" keyword in a function declaration?
How can you convert integers to binary or hexadecimal?
What is New modifiers?
How can my program discover the complete pathname to the executable from which it was invoked?
What is volatile keyword in c?
When should the register modifier be used? Does it really help?
Can a program have two main functions?
How can I find out if there are characters available for reading?
What are loops in c?
What is a union?
how can use subset in c program and give more example
What is external variable in c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply