+ 3
What is the wrong in below two codes ? And y the first code is giving out put as 3 ?What is the difference in these two program?
#include<stdio.h> int main() { int x = (1,2,3); printf("%d",x); return 0; } ____________________________ #include<stdio.h> int main() { int x = 1,2,3; printf("%d",x); return 0; }
2 Réponses
+ 2
Thank you George...:)
+ 1
A=(1,2,3,4,5,6,....10000) A will be the last value
A=1,2,3,...........10000; A will be the first value