Description: programming languages Online Quiz - 278 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
C++
C++
C++
C++
C++
C++
C++
C++
C++
C++
C++
C++
C++
C++
C++
C++
C++
What number of digits that can be accurately stored in a float (based on the IEEE Standard 754)?
union a { int a,b; }a1; void main() { a1.a=10; a1.b=20; printf("%d",a1.a); }
void main() { char p = "ayqm"; char c; c = ++p++; printf("%c",c); }