Follow Quotesrain
  • 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
  • /
  • Programming
  • /
  • Output

C Programming - Output Technical Interview Questions

C Select Another Category Output Select Another Topic

Programming and Technical

  • Android 118
  • ASP.NET 60
  • C 459
  • C++ 448
  • DATA STRUCTURE 66
  • DBMS 77
  • ELECTRONICS 39
  • Java 260
  • 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 (2) UnSolved Question (40)
Pages: 512345NextLast
Advertisements

(#M40165956) C QUESTION Loop Keep an EYE Keep an eye puzzle Keep an eye puzzle

What will be the output of the C program, if input is 6?

#include
int main()
{
unsigned char i = 0;
for(;i<=0;i++) ;
printf("%dn",i);
return 0;
}

Asked In C Sandip Hazra (4 years ago)
Solved Arka Mondal Read Solution (6)
Is this Puzzle helpful?   (20)   (11) Submit Your Solution Output

(#M40165900) C QUESTION write a program for replace characters in astring with other characters Keep an EYE Keep an eye puzzle Keep an eye puzzle

ex:apple
op:other characters wat u give

Asked In C Divya (4 years ago)
Unsolved
Is this Puzzle helpful?   (1)   (7) Submit Your Solution Output
Advertisements

(#M40164800) C QUESTION Tricky While loop Keep an EYE Keep an eye puzzle Keep an eye puzzle

#include
int main()
{
int i;
while(sizeof(NULL))
{
printf("inside loop");
continue;
break;
}
return 0;
}

Asked In C jayakumar (5 years ago)
Unsolved Read Solution (3)
Is this Puzzle helpful?   (18)   (1) Submit Your Solution Output

(#M40157158) C QUESTION using extern key word Keep an EYE Keep an eye puzzle Keep an eye puzzle

whta is the ouput if we execute this code
#include
extern int x;
int main()
{
do{
do{
printf("%o",x);
}
while(!-2);
}
while(0);
}
return 0;
}int x=8;

Asked In C yerra anitha (6 years ago)
Unsolved Read Solution (5)
Is this Puzzle helpful?   (8)   (1) Submit Your Solution Output

(#M40156582) C QUESTION C Programming Keep an EYE Keep an eye puzzle Keep an eye puzzle

void main()
{
int fun();
int i;
i=fun();
printf("%d",i);
}
int fun()
{
_AX=1234;
}

Asked In C Razen Yadav (6 years ago)
Unsolved Read Solution (9)
Is this Puzzle helpful?   (15)   (2) Submit Your Solution Output

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

What is the output and why?
#include
int main(){
int i=(char)65;
printf("%d %c %f %d",i,i,i,i);
return 0;
}

Asked In C JEEVIDHA RAJALINGAM (6 years ago)
Unsolved Read Solution (10)
Is this Puzzle helpful?   (9)   (4) Submit Your Solution Output

(#M40156419) C QUESTION Output Keep an EYE Keep an eye puzzle Keep an eye puzzle

Find the Output.
main()
{
int i=3;
switch(i)
{
default:printf("zero");
case 1: printf("one");
break;
case 2:printf("two");
break;
case 3: printf("three");
break;
}}
Options:zero,one,three,run time error

Asked In C JANARTHANAN RAM (6 years ago)
Unsolved Read Solution (19)
Is this Puzzle helpful?   (19)   (10) Submit Your Solution Output

(#M40156417) C QUESTION Output Keep an EYE Keep an eye puzzle Keep an eye puzzle

Find the Output.
int main(){
char a=250;
int expr;
expr= a+ !a + ~a + ++a;
printf("%d",expr);
return 0;
}
Options:249,250,0,-6

Asked In C JANARTHANAN RAM (6 years ago)
Unsolved Read Solution (2)
Is this Puzzle helpful?   (24)   (8) Submit Your Solution Output

(#M40156300) C QUESTION Opeartor precedence Keep an EYE Keep an eye puzzle Keep an eye puzzle

Operator precedence decides the

[1] order of execution of arithmetic operators
[2] order of execution of logical operators
[3] order of execution of all the operators
available in C
[4] nature of bitwise operators only

Asked In C Rishikesh Agrawani (6 years ago)
Unsolved Read Solution (3)
Is this Puzzle helpful?   (2)   (2) Submit Your Solution Output

(#M40156299) C QUESTION increment operators Keep an EYE Keep an eye puzzle Keep an eye puzzle

What will be the output of the following C program?

#include
void main(void)
{
int a=5, b, c,d,e;
e= (b=++a) + (c=a++) + (d=++a) ;
printf("%d, %d, %d, %d, %d", a,b,c,d,e);

return 0;
}

[1] 4, 5, 2, 3
[2] 8, 6, 7, 1
[3] 4, 6, 9, 2
[4] 8, 6, 6, 7

Asked In C Rishikesh Agrawani (6 years ago)
Unsolved Read Solution (13)
Is this Puzzle helpful?   (3)   (1) Submit Your Solution Output
Keep an EYE (0)
Solved Question (2) UnSolved Question (40)
Pages: 512345NextLast
  • Login
  • Register

Resend

Sponsored Links

Advertisements

Challenger of the Day

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

Maths Quotes

DO NOT LEARN MATHS BUT LEARN MATHS MEANS :PRACTICE MATHS DO NOT MUG-UP MATHS

divyashree

"zeroes sometimes makes you a hero.."

anand vijay

Placed User Comments

M4Math helped me a lot.

Vipul Chavan 2 years ago

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

yash mittal 3 years ago
  • 2471K+Registerd user
  • 1730K+Engineers
  • 741K+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