#include <stdio.h>
int mai
#include <stdio.h>
int mai
Practice Bitwise Operators –
#include <stdio.h>
int main() {
int x;
x =3 * 4 % 5;
printf("x=%d
",x);
return 0;
}
#include <stdio.h>
int mai
Practice Bitwise Operators –
#include <stdio.h>
int main() {
int x;
x =3 * 4 % 5;
printf("x=%d
",x);
return 0;
}
Name the header file to be included for the use of built in functio
Practice Library Functions –
Name the header file to be included for the use of built in function isalnum().
Which of the following cannot be legitimately passed to a function&
Practice Basic Concept –
Which of the following cannot be legitimately passed to a function
Specify the 2 library functions to dynamically allocate memory?
Practice Memory Allocation –
Specify the 2 library functions to dynamically allocate memory?
What function should be used to free the memory allocated by ca
Practice Functions –
What function should be used to free the memory allocated by calloc() ?
Which header file should be included to use functions like
Practice Functions –
Which header file should be included to use functions like malloc() and calloc()?
#include <stdio.h>
int mai
Practice Library Functions –
#include <stdio.h>
int main() {
printf("%d %c
");
return 0;
}
#include<stdio.h>
int ma
Practice Library Functions –
#include<stdio.h>
int main() {
int n=5;
printf("n=%*d
",n,n);
return 0;
}
The operator used to get the value at the address stored in a point
Practice Pointers –
The operator used to get the value at the address stored in a pointer variable is:-
If a variable is a pointer to a structure, then which of the follow
Practice Bitwise Operators –
If a variable is a pointer to a structure, then which of the following operator is used to access data members of the structure through the pointer variable?
Which of the following statement obtains the remainder on dividing
Practice Functions –
Which of the following statement obtains the remainder on dividing 5.5 by 1.3 ?
Which of the following statements is correct?
Practice Structures, Unions, Enums –
Which of the following statements is correct?
Why reference is not same as a pointer
Practice Pointers –
Why reference is not same as a pointer?
The range of double is –1.7e-38 to 1.7e+38
Practice Declarations and Initializations –
The range of double is –1.7e-38 to 1.7e+38 on 64 bits machine.
If the definition of the external variable occurs in the source fil
Practice Declarations and Initializations –
If the definition of the external variable occurs in the source file before its use in a particular function, then there is no need for an extern declaration in the function.