11th Grade Data Type Quizzes, Questions & Answers
Sort By Grade
11th GradeTop Trending Quizzes
This Data types Trivia quiz assesses understanding of C programming data types, focusing on variable declarations, pointer usage, and output predictions. It's ideal for learners enhancing their programming skills and...
Questions: 9 | Attempts: 164 | Last updated: Nov 1, 2024
-
Sample QuestionPredict the output of following program. Assume that the numbers are stored in 2's complement form. #include<stdio.h> int main() { unsigned int x = -1; int y = ~0; if(x == y) printf("same"); else printf("not same"); return 0; }
Advertisement