va_start may be used after the use of va_a
Practice Functions –
va_start may be used after the use of va_arg.
va_start may be used after the use of va_a
Practice Functions –
va_start may be used after the use of va_arg.
When we pass an array as an argument to a function, what actually g
Practice Arrays –
When we pass an array as an argument to a function, what actually gets passed?
Which of the following functions is most suitable for reading the c
Practice Functions –
Which of the following functions is most suitable for reading the conents of a file record by record?
Which function should be used to input a character without displayi
Practice Functions –
Which function should be used to input a character without displaying it on the screen?
What is stderr in C programming?
Practice Input / Output –
What is stderr in C programming?
Which of the following statements is correct?
Practice Basic Concept –
Which of the following statements is correct?
According to ANSI specifications which is the correct way of declar
Practice Command Line Arguments –
According to ANSI specifications which is the correct way of declaring main when it receives command-line arguments?
The maximum combined length of the command-line arguments including
Practice Command Line Arguments –
The maximum combined length of the command-line arguments including the spaces between adjacent arguments is__________.
How would you round off a value from 1.66 to 2.0?<
Practice Functions –
How would you round off a value from 1.66 to 2.0?
One of the following special symbols that is allowed in a variable
Practice Declarations and Initializations –
One of the following special symbols that is allowed in a variable name is ________.
Which of the following statements is used to obtain a remainder aft
Practice Functions –
Which of the following statements is used to obtain a remainder after dividing 3.14 by 2.1 ?
#include <stdio.h>
int mai
Practice Bitwise Operators –
#include <stdio.h>
int main() {
int x;
x = -3 * -4 % -6 / -5;
printf("x=%d
",x);
return 0;
}
#include <stdio.h>
int mai
Practice Bitwise Operators –
#include <stdio.h>
int main() {
int x;
x = 4 % 5 + 6 % 5;
printf("x=%d
",x);
return 0;
}
include <stdio.h>
int main
Practice Bitwise Operators –
include <stdio.h>
int main() {
int x;
x =-3 + 4 - 7 * 8 / 5 % 10;
printf("x=%d
",x);
return 0;
}
#include <stdio.h>
int mai
Practice Bitwise Operators –
#include <stdio.h>
int main() {
int x;
x =3 + 4 - 7 * 8 / 5 % 10;
printf("x=%d
",x);
return 0;
}