pointers in C

pointers in C

Assessment

Flashcard

Computers

University

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

18 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Which of the following pointer is Wild: int *p;, int *q=&a;, int *v=NULL;, void *g;

Back

int *p;

2.

FLASHCARD QUESTION

Front

What is the main drawback of pointers?

Back

Complexity to manage pointers

3.

FLASHCARD QUESTION

Front

What is the output of the following Code:
#include <stdio.h>
int main()
{
int *p;
int a=10;
p=&a;
*p=34;
printf("%d,%d",a,*p);
return 0;
}

Back

34,34

4.

FLASHCARD QUESTION

Front

What is the output of the following code:
#include <stdio.h>
int main()
{
void *z;
float s=1.2;
z=&s;
printf("%f",*z);
return 0;
}

Back

Compile time error

5.

FLASHCARD QUESTION

Front

What is the output of the following code:
#include <stdio.h>
int main()
{
int *p;
int a=20;
p=&a;
int **q;
**q=100;
q=&p;
*p=50;
printf("%d,%d,%d",**q,a,*p);
return 0;
}

Back

50,50,50

6.

FLASHCARD QUESTION

Front

What is the output of the following code snippet:
int a=45,b=67;
int *s,*q;
s=&a;q=&b;
printf("%d",s+q);

Back

Compile time error

7.

FLASHCARD QUESTION

Front

What is the output of the following code:
int a[]={1,2,33,4,4,6}
int *p;
p=a;
*(p+2)=25;
printf("%d,%d",*(p+2),2[a]);

Back

25,25

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?