Dot Net Code (114)
Visual Basic Code (11)
Programming Code AllOther (62) main() { extern int i; { int i=20; { const volatile unsigned i=30; printf("%d",i); } printf("%d",i); } printf("%d",i); } int i;
1 8723char *someFun() { char *temp = “string constant"; return temp; } int main() { puts(someFun()); }
1 7773char *someFun1() { char temp[ ] = “string"; return temp; } char *someFun2() { char temp[ ] = {‘s’, ‘t’,’r’,’i’,’n’,’g’}; return temp; } int main() { puts(someFun1()); puts(someFun2()); }
2 10345what mean void creat_object?in public class in this code class A{ public: int x; A(){ cout << endl<< "Constructor A";} ~A(){ cout << endl<< "Destructor A, x is\t"<< x;} }; void create_object(); void main() { A a; a.x=10; { A c; c.x=20; } create_object(); } void create_object() { A b; b.x=30; }
2597how many processes will gate created execution of -------- fork(); fork(); fork(); -------- Please Explain... Thanks in advance..!
GATE,
8 25113
write a program to perform generic sort in arrays?
an on-line examination application using html jsp servlet and jdbc. including session management and cookies
write a program that prompt the user to enter his height and weight,then calculate the body mass index and show the algorithm used
How to Split Strings with Regex in Managed C++ Applications?
Write a program to model an exploding firecracker in the xy plane using a particle system
How to get Filename from Path?
Code for Searching for Multiple Matches with the MatchCollection Class?
What is full form of PEPSI
can you please write a program for deadlock that can detect deadlock and to prevent deadlock.
how to diplay a external image of output on winxp by using c & c++,
How to Check if Folder Exists?
write a program using 2 D that searches a number and display the number of items 12 inputs values input 15,20, 13, 30, 38, 40,16, 18, 20 ,18 ,20 enter no. to search : 20
Code for Method of Handling Factorials of Any Size?
how to test the orientation of the layout in android.to note any changes in the ui design when change orientation
Write a program to convert postfix expression to infix expression.