πŸ“Š C Programming
Q. What is the output of C program?
Code:
int main()
 {

 char grade[] = {'A','B','C'}; 

printf("GRADE=%d, ", *grade); 

printf("GRADE=%d", grade[0]);

 }
  • (A) A A
  • (B) 65 A
  • (C) 65 65
  • (D) None of the above
πŸ’¬ Discuss
βœ… Correct Answer: (C) 65 65

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
180
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Ram Sharma
Publisher
πŸ“ˆ
87%
Success Rate