
pointers in C

Flashcard
•
Computers
•
University
•
Hard
Wayground Content
FREE Resource
Student preview

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
Similar Resources on Wayground
15 questions
u-Substitution

Flashcard
•
University
15 questions
6.6-6.8b Warm up

Flashcard
•
12th Grade
16 questions
AP CA A Unit 4 Review

Flashcard
•
11th - 12th Grade
14 questions
AP Computer Science A Flashcard

Flashcard
•
12th Grade
17 questions
CS2110 Flashcard 4 Review

Flashcard
•
University
9 questions
Java OOP

Flashcard
•
Professional Development
18 questions
Java Method

Flashcard
•
12th Grade
13 questions
Election Sim Flashcard

Flashcard
•
University
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
Appointment Passes Review

Quiz
•
6th - 8th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
Grammar Review

Quiz
•
6th - 9th Grade