
pointers in C
Flashcard
•
Computers
•
University
•
Practice Problem
•
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
Access all questions and much more by creating a free account
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple
Others
Already have an account?
Similar Resources on Wayground
10 questions
Tugas Pertemuan 3 - Fintech
Flashcard
•
University
14 questions
legislación
Flashcard
•
KG - University
18 questions
JavaScript Variables, Data Types, and Operators Flashcard
Flashcard
•
University
15 questions
Finite Math Final Exam
Flashcard
•
12th Grade
15 questions
Statistics Review
Flashcard
•
12th Grade
15 questions
Graphing Parabolas in Vertex Form Practice
Flashcard
•
12th Grade
15 questions
Gene mutations
Flashcard
•
12th Grade
16 questions
Permutations A2
Flashcard
•
12th Grade
Popular Resources on Wayground
15 questions
Fractions on a Number Line
Quiz
•
3rd Grade
20 questions
Equivalent Fractions
Quiz
•
3rd Grade
25 questions
Multiplication Facts
Quiz
•
5th Grade
22 questions
fractions
Quiz
•
3rd Grade
20 questions
Main Idea and Details
Quiz
•
5th Grade
20 questions
Context Clues
Quiz
•
6th Grade
15 questions
Equivalent Fractions
Quiz
•
4th Grade
20 questions
Figurative Language Review
Quiz
•
6th Grade