DOCUMENT RESOURCES FOR EVERYONE
Documents tagged
Documents c

C and C++: HCL 1.enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above ans:c 2.main { int x,j,k; j=k=6;x=2; ans x=36 x=j*k;…

Documents huawei

Total Question: 140 Time: 120 min (2 hrs) Section I : 60 [General Aptitude] (from RS Agarwal, GRE, IAS questions, Verbal & Non-Verbal) Section II : 60 [Teshnical] (Data…

Technology #OOP_D_ITS - 6th - C++ Oop Inheritance

1. C++ OOP :: Inheritance14/10/20091Hadziq Fabroyir - Informatics ITS 2. Classes CharacteristicClasses are used to accomplish:Modularity► Scope for global (static) methodsBlueprints…

Documents #include void main() { float x = 1.66, y = 1.75; printf(%f%f,ceil(x), floor(y)); }

Slide 1#include void main() { float x = 1.66, y = 1.75; printf(%f%f,ceil(x), floor(y)); } Slide 2 #include void main() { int x = 10, y =20; if(!(!x) && x) printf(x…

Education Bt0065

1. August 2010Bachelor of Science in Information Technology (BScIT) – Semester 1/Diploma in Information Technology (DIT) – Semester 1BT0065 – C Programming and Data…

Documents CS 1400 Chapters 9, 10 C-strings and Pointers. A few C-string library functions… #include int...

Slide 1 CS 1400 Chapters 9, 10 C-strings and Pointers Slide 2 A few C-string library functions… #include int strcmp (char a[ ], char b[ ]); returns 0 if string a is greater…

Documents Review of Chapter 10: String and Pointers

Review of Chapter 10: String and Pointers Outline String: Representation of a string: \0 Using scanf to read in string Initilization of strings String-Handling Functions…

Documents 1 Review of Chapter 10: String and Pointers. 2 Outline String: Representation of a string: \0 ...

Slide 1 1 Review of Chapter 10: String and Pointers Slide 2 2 Outline  String:  Representation of a string: \0  Using scanf to read in string  Initilization of…

Documents Chapter 10 Strings and Pointers

Chapter 10 Strings and Pointers Introduction String Constant Example: printf(“Hello”); “Hello” : a string constant A string constant is a series of characters surrounded…

Documents TECHNICAL QUESTIONS

#include void main() { float x = 1.66, y = 1.75; printf(â%f%fâ,ceil(x), floor(y)); } #include void main() { int x = 10, y =20; if(!(!x) && x) printf(âx = %dâ,x);…