Jan 11, 13 •
3100 Views •
Notes •
Sakshi Jaiswal •
7 Comments
1) Which of the following expression is true? a. 3 < 3 b. 3 < 3.0 c. string(“ABLE”) == string(“able”) d. string(“aBlE”) < string(“AbLe”) e. string(“able”) !=
Jan 11, 13 •
2363 Views •
General •
Shaheen Khan •
9 Comments
Q.1 Define IPV6? Ans. IPV6 stands for Internet Protocol version 6.It is the next generation of internet protocol. Basically it is developed to solve the problem of eventual exhaustion of IPV4 address space. Although it also provide some other advantages like
Jan 11, 13 •
3049 Views •
Resources •
•
7 Comments
Q 1. What is a static function ? Ans 1: A static function is a function whose scope is limited to the current source file. Scope refers to the visibility of a function or variable. Q 2. Is it possible to execute code even after the program exits the main()
Jan 10, 13 •
13521 Views •
Resources •
Top Coaching Institute •
1 Comment
Q1. What is a Pointer ? Ans. A pointer is a variable that stores the address of another variable in C language. It is basically a data type defined by the user to create special variables to hold the address of the main variables like int, float, char etc.
Jan 10, 13 •
10342 Views •
Notes •
Top Coaching Institute •
1 Comment
1) What will be output when you will execute following c code? #include<stdio.h> void main(){ if(0xA) if(052) if(‘xeb’) if(’12’) printf(“Our Edu”); else; else; else; else; } ans: Our Edu (condition is always true) 2)