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                      
Do you have a collection of Interview Questions and interested to share with us!!
Please send that collection to along with your userid / name. ThanQ
Google
 
 Categories  >>  Code Snippets       
 
  Programming Code (461)   Scripts_Markup Code (79)
 
Suggest New Category 
 


 

View Page with Answers
  Question  Asked @ Answers Views     select
 
Which version do you prefer of the following two, 1) printf(“%s”,str); // or the more curt one 2) printf(str);  1  50
char inputString[100] = {0}; To get string input from the keyboard which one of the following is better? 1) gets(inputString) 2) fgets(inputString, sizeof(inputString), fp)  1  72
void main() { printf(“sizeof (void *) = %d \n“, sizeof( void *)); printf(“sizeof (int *) = %d \n”, sizeof(int *)); printf(“sizeof (double *) = %d \n”, sizeof(double *)); printf(“sizeof(struct unknown *) = %d \n”, sizeof(struct unknown *)); }  1  69
Is the following code legal? void main() { typedef struct a aType; aType someVariable; struct a { int x; aType *b; }; }  1  25
Is the following code legal? typedef struct a aType; struct a { int x; aType *b; };  1  35
Is the following code legal? typedef struct a { int x; aType *b; }aType  1  21
Is the following code legal? struct a { int x; struct a *b; }  1  22
Is the following code legal? struct a { int x; struct a b; }  1  22
#define assert(cond) if(!(cond)) \ (fprintf(stderr, "assertion failed: %s, file %s, line %d \n",#cond,\ __FILE__,__LINE__), abort()) void main() { int i = 10; if(i==0) assert(i < 100); else printf("This statement becomes else for if in assert macro"); }  1  19
void main() { int *i = 0x400; // i points to the address 400 *i = 0; // set the value of memory location pointed by i; }  1  17
What is the hidden bug with the following statement? assert(val++ != 0);  1  15
What is wrong with the following code? int *foo() { int *s = malloc(sizeof(int)100); assert(s != NULL); return s; }  1  19
What is the subtle error in the following code segment? void fun(int n, int arr[]) { int *p=0; int i=0; while(i++<n) p = &arr[i]; *p = 0; }  1  18
Is there any difference between the two declarations, 1. int foo(int *arr[]) and 2. int foo(int *arr[2])  1  15
There were 10 records stored in “somefile.dat” but the following program printed 11 names. What went wrong? void main() { struct student { char name[30], rollno[6]; }stud; FILE *fp = fopen(“somefile.dat”,”r”); while(!feof(fp)) { fread(&stud, sizeof(stud), 1 , fp); puts(stud.name); } }  1  18
E-Mail New Answers        Answer Selected Questions       
 
Prev     1   [2]    3  ... 7   ... 10   ... 13   ... 16   ... 19   ... 22   ... 25   ... 28   ... 31   ... 34   ... 37    Next
 
 
 Software interview questions   Software Interview Questions  Sciences interview questions   Sciences Interview Questions  Engineering interview questions   Engineering Interview Questions
 Business Management interview questions   Business Management Interview Questions  Accounting interview questions   Accounting Interview Questions  Advertising Media interview questions   Advertising Media Interview Questions
 Architecture Design interview questions   Architecture Design Interview Questions  Call Centre interview questions   Call Centre Interview Questions  Fashion Modelling interview questions   Fashion Modelling Interview Questions
 Government interview questions   Government Interview Questions  Law interview questions   Law Interview Questions  Tourism Hotel interview questions   Tourism Hotel Interview Questions
 Everything Else interview questions   Everything Else Interview Questions  Aptitude Questions interview questions   Aptitude Questions Interview Questions  Placement Papers interview questions   Placement Papers Interview Questions
 Certifications interview questions   Certifications Interview Questions  Visa Interview Questions interview questions   Visa Interview Questions Interview Questions  Code Snippets interview questions   Code Snippets Interview Questions
 Entrance Exams interview questions   Entrance Exams Interview Questions  ERRORS interview questions   ERRORS Interview Questions
 
 
 
Un-Answered Questions
 
 Question Views Asked at   Select
 
how to copy form data between different pages 132  
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; } 31  
How can a procedure fetch data from FTP? I need a general code for this.. 184 Infosys
can any body give me answer to this question please? please give me code in cl with the folling specifications. 1.Accept 2 parameters-date and date type 2.If date type is J then convert date to *MDY format 3.If date type is M convert date to *JUL format 4. Send a program message with the value of converted date? Please give me the answer.Because im practicing in my house.Im taking trining on AS/400. 211  
Hi, My name is satish kumar dega I am learing QTP I have one doubt. I need to count the radio buttons in a particular page. In QTP how to write descriptive progming and how I will get all the radiobuttons count.In a paricular page having two WebRadioGroups under each group having 3 radiobuttons.I need to count all the radio buttons could you plz help me regarding this one 30  
Code for Creating a Form Using PlaceHolder Controls? 167  
Develop a routine to reflect an object about an arbitrarily selected plane 301  
snippet to prevent submission of form when certain/any validations got failed 138  
ArrayList declaration in .net 100  
Code for Adding Scripting Support to an Application? 228  
Definition of priority queue was given. We have to implement the priority queue using array of pointers with the priorities given in the range 1..n. The array could be accessed using the variable top. The list corresponding to the array elements contains the items having the priority as the array index. Adding an item would require changing the value of top if it has higher priority than top. Extracting an item would require deleting the first element from the corresponding queue. The following class was given: class PriorityQueue { int *Data[100]; int top; public: void put(int item, int priority); // inserts the item with the given priority. int get(int priority); // extract the element with the given priority. int count(); // returns the total elements in the priority queue. int isEmpty(); // check whether the priority queue is empty or not. }; We had to implement all these class functions. 448 Nagarro
Code for Presenting Parent/Child Data in a Data Grid Row? 340  
Code for Using Keyboard Events? 280  
how to Auto Scroll the page 202 Ninestars
Code for Document Validation in XML.NET? 229 TCS
How to get Dynamically Linked Comboboxes Set? 170 HCL
How to block double clicks 159  
In LSMW , what does the following error mean and how to rectify it : Incorrect interface data for set 78 in method C . This error is occuring in idoc processing step of LSMW. 245 Wipro
How to update and insert from datagridview at run time in excel database? 313  
I am configuring my anaconda file in linux, i want to use as kickstart file, in post installation how can i edit file or change the content of file and save it. 38  
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