programming languages Online Quiz - 37
Description: programming languages Online Quiz - 37 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
What will be output if you will execute following c code?
Which of the following statements are correct?
Which of the following will occur when trying to validate the below code Segment?
The other name for external variables in C++ is
Which of the following statements are correct about Function prototypes?
What the following program is executed?
Using pointers to call a function is called as
The member functions of a class can be defined outside the Class using
Which of the following will occur when trying to validate the below code Segment? #define #define // GetSquareOfx function-prototype has the following defn // int GetSquareOfx(int) ; Int main() { int x =5 ; Cout << GetSquareOfx() ; return x ; }
What will be output if you will execute following c code? #include #include void main() { int a[]={0,1,2,3,4,5,6,7,8,9,10}; int i=0,num; num=a[++i+a[++i]]+a[++i]; printf("%d",num); }