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   To Refer this Site to Your Friends   Click Here
Google
 
 Categories  >>  Code Snippets       
 
  Programming Code (461)   Scripts_Markup Code (79)
 
Suggest New Category 
 


 

View Page with Answers
  Question  Asked @ Answers Views     select
 
main() { register int a=2; printf("Address of a = %d",&a); printf("Value of a = %d",a); }  1  19
main() { int i=4,j=7; j = j || i++ && printf("YOU CAN"); printf("%d %d", i, j); }  1  17
main() { int i=5,j=10; i=i&=j&&10; printf("%d %d",i,j); }  1  14
1. const char *a; 2. char* const a; 3. char const *a; -Differentiate the above declarations.  2  22
main() { int i=10,j=20; j = i, j?(i,j)?i:j:j; printf("%d %d",i,j); }  1  12
void main() { static int i; while(i<=10) (i>2)?i++:i--; printf(“%d”, i); }  1  19
void main() { int *mptr, *cptr; mptr = (int*)malloc(sizeof(int)); printf(“%d”,*mptr); int *cptr = (int*)calloc(sizeof(int),1); printf(“%d”,*cptr); }  1  17
main() { int i = 3; for (;i++=0;) printf(“%d”,i); }  1  14
main() { char str1[] = {‘s’,’o’,’m’,’e’}; char str2[] = {‘s’,’o’,’m’,’e’,’\0’}; while (strcmp(str1,str2)) printf(“Strings are not equal\n”); }  1  14
main() { while (strcmp(“some”,”some\0”)) printf(“Strings are not equal\n”); }  1  20
void ( * abc( int, void ( *def) () ) ) ();  1  13
main() { char p[ ]="%d\n"; p[1] = 'c'; printf(p,65); }  1  13
main() { int i=5; printf(“%d”,i=++i ==6); }  1  11
int aaa() {printf(“Hi”);} int bbb(){printf(“hello”);} iny ccc(){printf(“bye”);} main() { int ( * ptr[3]) (); ptr[0] = aaa; ptr[1] = bbb; ptr[2] =ccc; ptr[2](); }  1  18
main() { char *p = “ayqm”; char c; c = ++*p++; printf(“%c”,c); }  1  12
E-Mail New Answers        Answer Selected Questions       
 
Prev    1    3   [4]    5  ... 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
 
We need to write the function to check the password entered is correct or not based on the following conditions.. a) It must have atleast one lower case character and one digit. b)It must not have any Upper case characters and any special characters c) length should be b/w 5-12. d) It should not have any same immediate patterns like abcanan1 : not acceptable coz of an an pattern abc11se: not acceptable, coz of pattern 11 123sd123 : acceptable, as not immediate pattern adfasdsdf : not acceptable, as no digits Aasdfasd12: not acceptable, as have uppercase character 42  
Code for IP Address Comparison and Conversion in C#? 331  
Code for Two Classes for Doing Gzip in Memory? 235  
How to count a sum, when the numbers are read from stdin and stored into a structure? 24  
how to Scroll a DIV content 557  
Coding for Synchronizing Cache Access in ASP.NET? 216  
i have two internal tables with customer and credit amount in one table then customer and debit amount in another table. now i need output in single list as customer, credit amount, debit amount and (credit - debit). help me please 84  
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 24  
how to create an anonymous function 152  
write a program to detect the user's browser ? 140 Infosys
code to get the coordinates of a Click Event 154  
Teta-Omeg-Big-Oh Show that f(n) = n2 + 3n3 is ;(n3). 251 Qatar-University
I am trying to pass the string firstName from a Servlet called SampleServet. I am running this on eclipse and it tells me that "the value for annotation attribute must be a constant expression. I don't understand why it is giving me this error. @PersonAnnotation(name = SampleServlet.firstName) public class AnnotationClass{ 120  
how to copy form data between different pages 132  
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? 31  
Code for Easily Using Hash Table? 213  
Code for Communicating over Sockets? 237  
why nlogn is the lower limit of any sort algorithm? 21  
How to get Dynamically Linked Comboboxes Set? 170 HCL
main() { extern int i; { int i=20; { const volatile unsigned i=30; printf("%d",i); } printf("%d",i); } printf("%d",i); } int i; 47  
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