• Result
  • Today's Puzzle
    • Previous Puzzles
    • Prize & Rules
  • Discussion Board
    • Suggestion Board
    • Trending Articles
  • Maths Tricks
  • Placement Papers
    • Placement Questions
    • Interview Experience
    • Placed user Comment
    • Group Discussion
  • English APP
  • login
  • Result
  • Today's Puzzle
    • Previous Puzzles
    • Prize & Rules
  • Discussion Board
    • Suggestion Board
    • Trending Articles
  • Maths Tricks
  • Placement Papers
    • Placement Questions
    • Interview Experience
    • Placed user Comment
    • Group Discussion
  • Walkins
    • Corporate Job Exam
    • Government Job Exam
    • Entrance Exam
  • Training
    • Internship
  • Placement Questions
  • /
  • C

Frequently Asked c interview questions and answers for freshers Page 13

c Select Another Category Select Another Topic

Programming and Technical

  • Android 118
  • ASP.NET 60
  • C 459
  • C++ 448
  • DATA STRUCTURE 66
  • DBMS 77
  • ELECTRONICS 39
  • Java 261
  • OOPs Concepts 117
  • Operating Syst 103
  • RDBMS 109
  • UNIX 70

c Question Topics

    Category (16)

    General Ability (2)

  • General Knowledge (2)
  • HR Interview (2)

  • Interview (2)
  • Logical Reasoning (9)

  • Coding Decoding (2)
  • Cryptography (1)
  • General Mental Ability (1)
  • Letter Series (1)
  • Mathematical Reasoning (1)
  • Missing Character (1)
  • Seating Arrangement (1)
  • Numerical Ability (12)

  • Age Problem (1)
  • Algebra (1)
  • Alligation or Mixture (1)
  • Data Interpretation (1)
  • Height and Distance (1)
  • Percentage (2)
  • Ratio and Proportion (1)
  • Time Distance and Speed (1)
  • Programming (218)

  • Arrays (15)
  • Basics (8)
  • Database (6)
  • Definition (25)
  • Functions (4)
  • Output (42)
  • Program (85)
  • Puzzles (1)
  • Technical (24)
  • Variables (1)
  • Verbal Ability (3)

  • Antonyms (1)
  • Miscellaneous (1)
  • Spotting Errors (1)
Keep an EYE (0)
Solved Question (6) UnSolved Question (454)
Pages: 46FirstPrev9101112131415161718NextLast
Advertisements

(#M40029375) C QUESTION C Keep an EYE Keep an eye puzzle Keep an eye puzzle

In which stage the following code

#include
gets replaced by the contents of the file stdio.h

Options
1) During editing
2) During linking
3) During execution
4) During preprocessing

Asked In C MAN (12 years ago)
Unsolved Read Solution (3)
Is this Puzzle helpful?   (10)   (4) Submit Your Solution Basics

(#M40018761) C QUESTION C- QUESTIONS Keep an EYE Keep an eye puzzle Keep an eye puzzle

When reallocating memory if any other pointers point
into the same piece of memory do you have to readjust
these other pointers or do they get readjusted
automatically?

Asked In C (12 years ago)
Unsolved
Is this Puzzle helpful?   (1)   (0) Submit Your Solution
Advertisements

(#M40165328) C QUESTION Keep an EYE Keep an eye puzzle Keep an eye puzzle

pankaj makes a program to print the products of cubes of the first 10 whole numbers.
integer x=0
integer sum=0

Asked In C Aryan Singh (7 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (8)   (6) Submit Your Solution Technical

(#M40157208) C QUESTION how it will be the output Keep an EYE Keep an eye puzzle Keep an eye puzzle

#include
void main()
{
int a=3,b=6,c=8;
printf("%d %d %d");
getch();
}
the output is
8 6 3
HOW?

Asked In C sreelekha (9 years ago)
Unsolved Read Solution (9)
Is this Puzzle helpful?   (11)   (4) Submit Your Solution Arrays

(#M40018721) C QUESTION C- QUESTIONS Keep an EYE Keep an eye puzzle Keep an eye puzzle

What will the function rewind() do?

Options
1) Reposition the file pointer to a character reverse.
2) Reposition the file pointer stream to end of file.
3) Reposition the file pointer to begining of that line.
4) Reposition the file pointer to begining of file.

Asked In C (12 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (2)   (2) Submit Your Solution Definition

(#M40037086) C QUESTION C-PROGRAMING Keep an EYE Keep an eye puzzle Keep an eye puzzle

Answer the questions based on the following program
VOID FUNCTION(INT KK)
{KK+=20;
}
VOID FUNCTION (INT K)
INT MM,N=&M
KN = K
KN+-=10;
}

What is the output of the following program
main()
{ int var=25,varp;
varp=&var;
varp p = 10;
fnc(varp)
printf("%d%d,var,varp);
}
(a) 20,55

Asked In C gowtham (11 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (3)   (0) Submit Your Solution Program

(#M40018737) C QUESTION C- QUESTIONS Keep an EYE Keep an eye puzzle Keep an eye puzzle

Assuming a integer 2-bytes, What will be the output of the program?
#include

int main()
{
printf("%xn", -1<<3);
return 0;
}
Options
1) ffff
2) fff8
3) 0
4) -1

Asked In C (12 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (3)   (2) Submit Your Solution Program

(#M40013442) C QUESTION Mixture Keep an EYE Keep an eye puzzle Keep an eye puzzle

In which numbering system can the binary number 1011011111000101 be easily converted to?

Options
1) Decimal system
2) Hexadecimal system
3) Octal system
4) No need to convert

Asked In C Mohammad Danish Mumtaz (12 years ago)
Unsolved Read Solution (12)
Is this Puzzle helpful?   (27)   (9) Submit Your Solution Program

(#M40029235) C QUESTION C Keep an EYE Keep an eye puzzle Keep an eye puzzle

#include
main()
{
struct xx
{i
nt x;
struct yy
{
char s;
struct xx *p;
};
struct yy *q;
};
}

Asked In C MAN (12 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (4)   (0) Submit Your Solution Coding Decoding

(#M40028783) C QUESTION Technical Question on c Keep an EYE Keep an eye puzzle Keep an eye puzzle

Predict the output or error(s) for the following programmes:
void main()
{i
nt const * p=5;
printf("%d",++(*p));
}
Answer: Compiler error: Cannot modify a constant value.
Explanation: p is a pointer to a "constant integer". But we tried to change the value of the
"constant integer".
38. 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]);
}

Asked In C MAN (12 years ago)
Unsolved Read Solution (1)
Is this Puzzle helpful?   (2)   (1) Submit Your Solution
Keep an EYE (0)
Solved Question (6) UnSolved Question (454)
Pages: 46FirstPrev9101112131415161718NextLast
  • Login
  • Register

Resend

Sponsored Links

Advertisements

Challenger of the Day

no image
Dimple
India
Punjab
Time: 00:01:33
Points
19

Maths Quotes

Do math and you can do anything.

Unknown

"zeroes sometimes makes you a hero.."

anand vijay

Placed User Comments

M4Math helped me a lot.

Vipul Chavan 5 years ago

Thanks m4 maths for helping to get placed in several companies.
I must recommend this website for placement preparations.

yash mittal 5 years ago

Now enjoy Offline Access of latest Question.

Get M4maths app to avail expert's solution and latest selected questions.

Download m4maths app now

  • 2533K+Registerd user
  • 1774K+Engineers
  • 759K+MBA Asprirant
  • 3K+Enginnering College
  • 250+Company Exam
  • 150K+Interview Questions
  • Site Links
  • Home
  • Result
  • Today's Puzzle
  • Discussion Board
  • Maths Tricks
  • Advertise with us
  • Contact Us
  • Useful Info
  • Maths Quotes
  • Previous Puzzles
  • Prize
  • Privacy Policy
  • Disclaimer and Copyright
  • Terms and Conditions
  • Sitemap
  • Placement papers
  • TCS Placement Paper
  • HCL Placement Paper
  • INFOSYS Placement Paper
  • IBM Placement Paper
  • SYNTEL Placement Paper
  • TECHNICAL Interview
  • HR Interview
All rights are reserved to @m4maths.com