T
Tushar
hello all,
i would like to know why this code compiles and gives the output
Code 1:
----------
int main(){
printf("String" + 2);
}
Output: ring
Code 2:
----------
int main(){
printf("String", +2);
}
Output: String
I used gcc 3.2 on redhat 8.0 to compile my code
Regards,
Tushar
i would like to know why this code compiles and gives the output
Code 1:
----------
int main(){
printf("String" + 2);
}
Output: ring
Code 2:
----------
int main(){
printf("String", +2);
}
Output: String
I used gcc 3.2 on redhat 8.0 to compile my code
Regards,
Tushar