Podcast
Questions and Answers
Which of the following is a correct data type in C programming language?
Which of the following is a correct data type in C programming language?
What is the purpose of 'void' in a function declaration in C programming language?
What is the purpose of 'void' in a function declaration in C programming language?
Which symbol is used for the 'address of' operator in C programming language?
Which symbol is used for the 'address of' operator in C programming language?
In C programming, what is the main difference between call by value and call by reference?
In C programming, what is the main difference between call by value and call by reference?
Signup and view all the answers
Which symbol is used to access the value pointed to by a pointer in C programming language?
Which symbol is used to access the value pointed to by a pointer in C programming language?
Signup and view all the answers
What is the result of the following C code snippet?
int x = 5;
int *p = &x;
printf("%d", *p);
What is the result of the following C code snippet? int x = 5; int *p = &x; printf("%d", *p);
Signup and view all the answers