Search Header Logo

C Programming - Basics 001

Computers

University

Used 70+ times

C Programming - Basics 001
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Can we declare function inside structure of C Programming?

Yes

No

Depends on Compiler

Yes but run time error

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is storage class for variable A in below code?


void main()

{

int A;

A = 10;

printf("%d", A);

}

extern

register

auto

static

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is output of below program?

void main()

{

const int a = 10;

printf("%d",++a);

}

11

10

Compilation Error

0

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Library function pow() belongs to which header file?

mathio.h

math.h

square.h

stdio.h

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Libray function getch() belongs to which header file?

stdio.h

conio.h

stdlib.h

stdlibio.h

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the following is invalid header file in C?

mathio.h

math.h

string.h

ctype.h

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is output of below code?


void main()

{

char name[]="Cppbuz";

int len;

int size;

len = strlen(name);

size = size_of(name);

printf("%d,%d",len,size);

}

6,6

6,7

7,7

0,0

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Microsoft

Continue with Microsoft

or continue with

Facebook

Facebook

Apple

Apple

Others

Others

Already have an account?