DOCUMENT RESOURCES FOR EVERYONE
Documents tagged
Documents Sample Test Paper for Campus

Sample Test Paper :Alter Engineering 1. int b=10; int *p=&b; *p++; printf("%d",*p); what is the output? 2. What is the difference between malloc, calloc and…

Documents c,c++

Give the output of the programs in each case unless mentioned otherwise 1. void main() { int d=5; printf("%f",d); }Ans: Undefined 2. void main() { int i; for(i=1;i…

Documents C QUESTIONS

C Questions Note : All the programs are tested under Turbo C/C++ compilers. It is assumed that,  Programs run under DOS environment,  The underlying machine is an x86…

Documents Test your C skills with answers

C Aptitude 1. void main() { int const * p=5; printf("%d",++(*p)); } Answer: Compiler error: Cannot modify a constant value. Explanation: p is a pointer to a "constant…

Documents C Interview Questions Part1

http://www.exforsys.com Page 1 6/26/2004 C Interview Questions Note : All the programs are tested under Turbo C/C++ compilers. It is assumed that, Programs run under DOS…

Documents c Aptitude

First Job….  Dream Job….  Freshersworld.com C  Questions Note :  All the programs are tested under Turbo C/C++ compilers.   It is assumed that, Programs run under DOS environment,…

Documents Compiled By Nidhi Poddar @ VITA void main() { int a=32767; printf(“%d”, a); } 2.

Slide 1 Slide 2 Compiled By Nidhi Poddar @ VITA void main() { int a=32767; printf(“%d”, a); } 2 Slide 3 Compiled By Nidhi Poddar @ VITA void main() { int a=32769; printf(“%d”,…

Documents Programming book sample

1.  ক িম উ টা র োপা গা...

Documents Chapter 9 Strings Instructor: Alkar / Demirer. Copyright ©2004 Pearson Addison-Wesley. All rights.....

Slide 1 Chapter 9 Strings Instructor: Alkar / Demirer Slide 2 Copyright ©2004 Pearson Addison-Wesley. All rights reserved.9-2 Strings stringC implements the string data…

Documents CS 241 Section Week #1

CS 241 Section Week #1 About Sections Each week: We’ll spend additional time on topics that the instructors feel should be reviewed. We’ll prepare you for the upcoming…