0% found this document useful (0 votes)
70 views2 pages

Term Paper 2 ES-CS201

This document provides the questions and guidelines for a term paper assignment on pointers in C programming. The 7 questions assess various pointer concepts like arrays of pointers, pointers to arrays, pointer arithmetic, const pointers, adding and comparing pointers, and using pointers with scanf. Students are instructed to write the 3-4 page paper in handwriting, including an abstract, introduction, body addressing the questions, and conclusion. Diagrams and figures should be original, and references include textbooks on C programming and computer fundamentals.

Uploaded by

swarup sarkar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
70 views2 pages

Term Paper 2 ES-CS201

This document provides the questions and guidelines for a term paper assignment on pointers in C programming. The 7 questions assess various pointer concepts like arrays of pointers, pointers to arrays, pointer arithmetic, const pointers, adding and comparing pointers, and using pointers with scanf. Students are instructed to write the 3-4 page paper in handwriting, including an abstract, introduction, body addressing the questions, and conclusion. Diagrams and figures should be original, and references include textbooks on C programming and computer fundamentals.

Uploaded by

swarup sarkar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Academy of Technology

Paper: Programming for Department: 2nd Semester Paper Code: ES-CS201


Problem Solving (All)

Term Paper: 2

I. TOPIC: Pointer in C

II.OBJECTIVE: To implement the power of pointer in terms of dynamic memory allocation


and call by reference.

III.QUESTIONS

1. What is array of pointers? Explain with an example. What is the [2+2]

relationship between an array and a pointer?


2. What is pointer to an array? Explain with an example. [4]

3. Why a[5] == 5[a]? Explain. [3]

4. What do you understand by const pointer? Explain with an [4]

example
5. Why we cannot add two pointers? Why are pointers different sizes [3+2]

on different machines?
6. Is it possible to write scanf statement without ‘&’ operator? Give [2+3]

your logic with an example.


7. Write the output & mention the logic for the below code snippet [5]

void main()
{
int* pc, c, d;
c = 5;
d = -15;
pc = &c;
printf("%d", *pc);
pc = &d;
printf("%d", *pc);
}
Academy of Technology
Paper: Programming for Department: 2nd Semester Paper Code: ES-CS201
Problem Solving (All)

IV: Text Book and References

1. Kanetkar Y, Let us C

2. Balaguruswamy E, Introduction to Computing, TMH WBUT Series

3. Reema Thareja, Computer Fundamentals and Programming in C

Note:

i. Figures and diagram should be original as far as possible

ii. Term paper should be written in your own hand writing

iii. Try to write within 3 – 4 pages

Guidelines for writing Term Paper

Abstract: (….................................................................................) Within 50 -70 words.


Keywords: Function, Domain, Co-domain, Range, One to one, onto, into, Composition, Inverse

Introduction: (…........................................................................) Within 250 – 300 words.

Body: (…..................................................................................) < Theory / Methods / Derivations / Logic /


Conceptual Linkage / Figures / Tables / Analysis / Applications / Pros. and Cons. / Comparison >
(As per requirement and question pattern)

Conclusion / Discussion: (….....................................................) Within 100 – 200 words.

You might also like