Online tests are a mainstream type of amusement for web surfers. Online tests are by and large allowed to play and for diversion purposes just however some online test sites offer prizes. Sites highlight online tests regarding numerous matters. One well known kind of online test is a character test or relationship test which is like what can be found in numerous ladies' or youngster magazines. Sites facilitating tests incorporate Quizilla, FunTrivia, OkCupid, Sporcle, and Quizlet.
what is Educational quizzes?
Test is quite possibly the most well-known eLearning designs for a large number of the online course. A few organizations and schools utilize online tests as a way to teach their workers or understudies separately. Famous sites facilitating tests for this reason incorporate Quizlet and Revision Quiz Maker
c programming interview Question
c programming interview Question
Quiz
Father of c language?
Dennis Ritchie
Ritchie mark
karl marx
jhon hertz
Guess who is this?
herodotus
Denis ritchie
smith karl
james smith
what will be the output? #include int main() { int a = 10; int b = 15;
printf("=%d",(a+1),(b=a+2)); printf(" %d=",b);
return 0; }
No compile error but output would be =11 X= where X would depend on compiler implementation.
compiler Error due to (b=a+2) in the first printf().
=11 12=
=10 =15
What’s going to happen when we compile and run the following C program snippet? #include "stdio.h" int main() { int a = 10;
printf("=%d %d=",(a+1));
return 0; }
Compiler Error due to missing argument for second %d
Compiler not giving Error due to missing argument for second %d
Undefined behaviour
runtime error
As per C language standard, which of the followings is/are not keyword(s)? Pick the best statement. auto make main sizeof elseif
0 Comments