Showing posts with label C++. Show all posts
Showing posts with label C++. Show all posts

Saturday, January 07, 2012

More Interview Questions on C - Sample Set 4

Free download question set from important topics of C language. Basically for the students appearing for university technical exams and technical job interviews.

Saturday, December 17, 2011

C Aptitude Questions Sample Set 3

Sample interview questions for C.

Thursday, December 15, 2011

C Sample Questions - Sample Set 2

Sample and interview questions for C language.

C Question Bank- Ebook

  • Best book to brush C concepts before Interview.
  • Contains Questions asked in interviews of International Companies.
  • All the questions are neatly answered  with examples.
  • Contains tested & working code samples — not just Theory.
  • Light weight ebook, contains 50 pages only.  

Interview questions for C - Sample Set 1

Suggestions and interview questions for C language.

Sunday, November 27, 2011

Output & Errors

void main()
{
  char s[ ]="man";
  int i;
  for( i=0 ; s[ i ] ; i++ )
   printf("\n%c %c %c %c" , s[ i ], *(s + i), *(i + s), i[s]);
}

Output & Errors

void main()
{
  int const *p=100;
  printf("%d" , ++(*p));
}