• HOME
  • QUIZ
  • CONTACT US
EXAMIANS
  • COMPUTER
  • CURRENT AFFAIRS
  • ENGINEERING
    • Chemical Engineering
    • Civil Engineering
    • Computer Engineering
    • Electrical Engineering
    • Mechanical Engineering
  • ENGLISH GRAMMAR
  • GK
  • GUJARATI MCQ

C PROGRAMMING QUIZ

When a function is recursively called all the automatic variables are stored in a ..........

TRUE ANSWER : ?
YOUR ANSWER : ?

Let x be an array. Which of the following operations are illegal?I.   ++xII. x+1III. x++IV. x*2

TRUE ANSWER : ?
YOUR ANSWER : ?

Determine Output:void main(){ char string[]="Hello World"; display(string);}void display(char *string){ printf("%s", string);}

TRUE ANSWER : ?
YOUR ANSWER : ?

Find the output of the following program.void main(){ int i=10; /* assume address of i is 0x1234ABCD */ int *ip=&i; int **ipp=&&i; printf("%x,%x,%x", &i, ip, *ipp); }

TRUE ANSWER : ?
YOUR ANSWER : ?

What will be the output of the following program?#include<stdio.h>void main(){ int i = 10; void *p = &i; printf("%d\n", (int)*p);}

TRUE ANSWER : ?
YOUR ANSWER : ?

What will be the output of the program code?#include<stdio.h>#define a 10void main(){ #define a 50 printf("%d", a);}

TRUE ANSWER : ?
YOUR ANSWER : ?

Determine output:void main(){ int const *p=5; printf("%d", ++(*p));}

TRUE ANSWER : ?
YOUR ANSWER : ?

Choose the correct output for the following program.#include<stdio.h>void main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);}

TRUE ANSWER : ?
YOUR ANSWER : ?

Find the output of the following program. void main() { int i=01289; printf("%d", i); }

TRUE ANSWER : ?
YOUR ANSWER : ?

The address operator &, cannot act on

TRUE ANSWER : ?
YOUR ANSWER : ?
MORE MCQ

QUIZ STATS

  • 0
  • 0

DOWNLOAD APP

  • APPLE
    from app store
  • ANDROID
    from play store

SEARCH

LOGIN HERE


  • GOOGLE

FIND US

  • 1.70K
    FOLLOW US
  • EXAMIANSSTUDY FOR YOUR DREAMS.
  • SUPPORT :SUPPORT EMAIL ACCOUNT : examians@yahoo.com

OTHER WEBSITES

  • GUJARATI MCQ
  • ACCOUNTIANS

QUICK LINKS

  • HOME
  • QUIZ
  • PRIVACY POLICY
  • DISCLAIMER
  • TERMS & CONDITIONS
  • CONTACT US
↑