C Programing (Conceptual)
Which of the following is not an operator in C?
- ~
- ,
- sizeof()
- /
- @
- option5 Clear All
Clear All
What is the sizeof(char) in a 64-bit C compiler?
- 1 bit
- 2 bits
- 1 Byte
- 2 Bytes
- option4 Clear All
Clear All
In C language, FILE is of which data type?
- int
- char *
- struct
- double
- option3 Clear All
Clear All
Which of the following declaration is not supported by C language?
- String str;
- char *str;
- float str=3e2;
- char str[] = "Hi";
- option1 Clear All
Clear All
What is #include ?
- Preprocessor directive
- Inclusion directive
- File inclusion directive
- None of the mentioned
- option1 Clear All
Clear All
C preprocessors can have compiler specific features.
- Yes
- No
- Depends on the standard
- Depends on the platform
- option1 Clear All
Clear All
scanf() is a predefined function in ......... header file.
- ctype.h
- stdlib.h
- stdio.h
- stdag.h
- option3 Clear All
Clear All
Which keyword is used to prevent any changes in the variable within a C program?
- volatile
- immutable
- const
- mutable
- option3 Clear All
Clear All
- 0123456789
- 012345678910
- Error
- 10
- option4 Clear All
Clear All