April 8, 2025

UGC NET CS 2006 Dec-paper-2

Question 13 int arr[ ]={1, 2, 3, 4} int count; incr( ) { return ++count; } main( ) { arr[count++]=incr( ); printf(“arr[count]=%d\n”, arr[count]); } The value […]
April 11, 2025

NTA UGC NET Aug 2024 Paper-2

Question 16 Which of the following statements about pointers in C are TRUE. (A) Pointers can be used to access array elements (B) Pointers can store […]
April 11, 2025

NTA UGC NET Aug 2024 Paper-2

Question 87 Which of the following is the correct way to declare a functional pointer in C? A int *func (int, int); B int (*func) (int, […]