M
mahesha
What should be the behaviour of following program?. Is this behaviour
is undefined or compiler should report error for this case?. Can
anybody point me to pages in the standard where it is explained.
#include <stdarg.h>
void goo(int a) {
va_list args;
va_start(args, a);
}
int main() {
goo(2);
}
is undefined or compiler should report error for this case?. Can
anybody point me to pages in the standard where it is explained.
#include <stdarg.h>
void goo(int a) {
va_list args;
va_start(args, a);
}
int main() {
goo(2);
}