ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip       Ask Questions on ANYTHING, that arise in your Daily Life at     FORUM9.COM
Google
 
 Categories  >>  Code Snippets  >>  Programming Code       
 
  C Code (302)   C++ Code (52)   VC++ Code (1)   Java Code (13)   Dot Net Code (69)
  Visual Basic Code (3)   Programming Code AllOther (21)
 
Suggest New Category 
 


 

View Page with Answers
  Question  Asked @ Answers Views     select
 
How to count a sum, when the numbers are read from stdin and stored into a structure?  0  19
what is the use of using for loop as "for(;;)"?  3  62
How we print the table of 3 using for loop in c programing?  3  114
How we print the table of 2 using for loop in c programing?  0  29
what 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; }  0  26
main() { char a[4]="HELL"; printf("%s",a); } Wipro  1  130
char *someFun1() { char temp[ ] = “string"; return temp; } char *someFun2() { char temp[ ] = {‘s’, ‘t’,’r’,’i’,’n’,’g’}; return temp; } int main() { puts(someFun1()); puts(someFun2()); }  1  60
char *someFun() { char *temp = “string constant"; return temp; } int main() { puts(someFun()); }  1  53
Printf can be implemented by using __________ list.  1  68
main() { extern int i; { int i=20; { const volatile unsigned i=30; printf("%d",i); } printf("%d",i); } printf("%d",i); } int i;  0  44
main() { int a=10,*j; void *k; j=k=&a; j++; k++; printf("\n %u %u ",j,k); }  1  43
main() { char a[4]="HELLO"; printf("%s",a); }  1  50
Is this code legal? int *ptr; ptr = (int *) 0x400;  1  46
void main() { char ch; for(ch=0;ch<=127;ch++) printf(“%c %d \n“, ch, ch); }  1  47
void main() { int i=10, j=2; int *ip= &i, *jp = &j; int k = *ip/*jp; printf(“%d”,k); }  1  46
E-Mail New Answers        Answer Selected Questions       
 
 [1]    2  ... 4   ... 7   ... 10   ... 13   ... 16   ... 19   ... 22   ... 25   ... 28   ... 31    Next
 
 
 Programming Code interview questions   Programming Code Interview Questions  Scripts_Markup Code interview questions   Scripts_Markup Code Interview Questions
 
 
 
Un-Answered Questions
 
 Question Views Asked at   Select
 
Code for Easily Using Hash Table? 211  
Given a table of the form: Product Sold on A 1/1/1980 B 1/1/1980 C 1/1/1980 A 1/1/1980 B 1/1/1980 C 2/1/1980 A 2/1/1980 There are 30 products and 10,000 records of such type. Also the month period during which sales happened is given to u. Write the program to display the result as: Product Month No. of copies A January 12 A February 15 A March 27 B January 54 B February 15 B March 10 C January 37 23  
Code for Using Keyboard Events? 280  
Given 1 to n random number, find top 10 maximum numbers and explain the time complexity of the algorithm. 444 NetApp
How many digit have a Polaris 1995 300c.c. 2x4 nad how many have a Polaris 2007 300 c.c 2x4? And what site I can check this information??? 167 FlashTECH
Write a Program in Visual Basic by means of which we can send any data from Visual basic program to any other application running on that machine whether that application supports OLE or not..... 266  
Display Pattern: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 &#8230; 91  
can u give me the c codings for converting a string into the hexa decimal form...... 200  
How to get Dynamically Linked Comboboxes Set? 169 HCL
How to Bind Nested XML to a Repeater Control with Container.DataItem? 371  
Listview design in .net 101  
How we use ajax in asp.net through javaScript. Please givee me an example. 350  
Given a spherical surface, write bump-mapping procedure to generate the bumpy surface of an orange 336  
Code for Searching for Multiple Matches with the MatchCollection Class? 340 TCS
I have a file which contains so many lines and variable number of lines are treated as a record. For example *first ooooo xxxxx ttttt mmmm vvvvvvv *end uuu bbbb *first kkkkvvvvvv nnnn mmmmm kkkkk fffff gggg ffff kkkk lllll *end. Here the lines from *first to *end are treated as a record. The number of lines between *first and *end is not same for all the records. Suppose there are 100 records (or number of records are not predefined)like the format given in the above example. Now the entire file needs to split into two files, first having 40 and remaining in the second file. Can we split using sort utility? If possible then what is the sort card? 29  
Implement a command console for changing settings on a particular object. The command console should allow you to enter a string and will return the response (very similar to a terminal session). The commands are as follows: SET propertyname=newvalue will change the target object’s member named “propertyname” to have a value equal to “newvalue”. If the input value is incompatible (i.e. an int being set to a string), print out an appropriate error message. GET propertyname will print out the current value of the target object’s member named “propertyname”. GET * will print out a list of all target object members and their current values. The system should be extensible for future commands and should accept an arbitrary object, such that another developer could insert another object into the system and rely on the command console to get and set the properties correctly. 75  
Set up procedure for generating a wire frame display of a polyhedron with the hidden edges of the object drawn with dashed lines 318 IBM
How to update and insert from datagridview at run time in excel database? 312  
U hv to enter a range from a and b and search hw many no. of times a pattern n. occurs between the range a and b. Eg :i/p:enter range :0 100 Enter pattern: 13 o/p: the no. times 13 occurred betwwn 0 to 100:1 Eg :i/p:enter range :100 1000 Enter pattern: 13 o/p: the no. times 13 occurred betwwn 100 to 1000: (in this 13,113,131,132,133&#8230;139,213,313,&#8230;913 all these will be counted) 32  
main() { extern int i; { int i=20; { const volatile unsigned i=30; printf("%d",i); } printf("%d",i); } printf("%d",i); } int i; 44  
E-Mail New Answers        Answer Selected Questions
 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com