Tìm kiếm:
TRANG NHÀ
Giới thiệu VNEDU.ORG
Điều khoản và bản quyền
Liên lạc VNEDU
TRẮC NGHIỆM TRỰC TUYẾN
---Công Cụ:---
Soạn Biểu thức
Bảng màu HTML
Ký hiệu đặc biệt 01
Ký hiệu đặc biệt 02
Ký hiệu đặc biệt 03
Ký hiệu đặc biệt 04
Ký hiệu đặc biệt 05
Ký hiệu đặc biệt 06
Ký hiệu đặc biệt 07
Ký hiệu đặc biệt [Toán]
Tin Học   ||  Căn Bản    Văn Phòng    Hệ Thống - Mạng    Phần Mềm Ứng Dụng    Kỹ thuật số    Lập trình    SQL  

Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 59
Ngày làm bài: Hôm nay lúc 12:27:02 (Server time)
Số câu hỏi: 10.   Tổng điểm: 10
Yêu cầu hoàn thành: 60 phút.
Thời gian còn lại: 
Cỡ chữ câu hỏi:  Cỡ chữ đáp án:


1-
What will be the output of the program?
#include<stdio.h>
#include<stdarg.h>
void fun1(int num, ...);
void fun2(int num, ...);

int main()
{
    fun1(1, "Apple", "Boys", "Cats", "Dogs");
    fun2(2, 12, 13, 14);
    return 0;
}
void fun1(int num, ...)
{
    char *str;
    va_list ptr;
    va_start(ptr, num);
    str = va_arg(ptr, char *);
    printf("%s ", str);
}
void fun2(int num, ...)
{
    va_list ptr;
    va_start(ptr, num);
    num = va_arg(ptr, int);
    printf("%d", num);
}

  A - 
Dogs 12
  B - 
Cats 14
  C - 
Boys 13
  D - 
Apple 12
2-
Point out the error in the following program.
#include<stdio.h>
#include<stdarg.h>
fun(...);

int main()
{
    fun(3, 7, -11.2, 0.66);
    return 0;
}
fun(...)
{
    va_list ptr;
    int num;
    va_start(ptr, n);
    num = va_arg(ptr, int);
    printf("%d", num);
}

  A - 
Error: fun() needs return type
  B - 
Error: ptr Lvalue required
  C - 
Error: Invalid declaration of fun(...)
  D - 
No error
3-
Point out the error if any in the following program (Turbo C).
#include<stdio.h>
#include<stdarg.h>
void display(int num, ...);

int main()
{
    display(4, 'A', 'a', 'b', 'c');
    return 0;
}
void display(int num, ...)
{
    char c; int j;
    va_list ptr;
    va_start(ptr, num);
    for(j=1; j<=num; j++)
    {
        c = va_arg(ptr, char);
        printf("%c", c);
    }
}

  A - 
Error: unknown variable ptr
  B - 
Error: Lvalue required for parameter
  C - 
No error and print A a b c
  D - 
No error and print 4 A a b c
4-
Point out the error in the following program.
#include<stdio.h>
#include<stdarg.h>
void varfun(int n, ...);

int main()
{
    varfun(3, 7, -11, 0);
    return 0;
}
void varfun(int n, ...)
{
    va_list ptr;
    int num;
    num = va_arg(ptr, int);
    printf("%d", num);
}

  A - 
Error: ptr has to be set at begining
  B - 
Error: ptr must be type of va_list
  C - 
Error: invalid access to list member
  D - 
No error
5-
Point out the error in the following program.
#include<stdio.h>
#include<stdarg.h>

int main()
{
    void display(char *s, int num1, int num2, ...);
    display("Hello", 4, 2, 12.5, 13.5, 14.5, 44.0);
    return 0;
}
void display(char *s, int num1, int num2, ...)
{
    double c;
    char s;
    va_list ptr;
    va_start(ptr, s);
    c = va_arg(ptr, double);
    printf("%f", c);
    }
}

  A - 
Error: invalid arguments in function display()
  B - 
Error: too many parameters
  C - 
Error: in va_start(ptr, s);
  D - 
No error
6-
Point out the error in the following program.
#include<stdio.h>
#include<stdarg.h>

int main()
{
    void display(int num, ...);
    display(4, 12.5, 13.5, 14.5, 44.3);
    return 0;
}
void display(int num, ...)
{
    float c; int j;
    va_list ptr;
    va_start(ptr, num);
    for(j=1; j<=num; j++)
    {
        c = va_arg(ptr, float);
        printf("%f", c);
    }
}

  A - 
Error: invalid va_list declaration
  B - 
Error: var c data type mismatch
  C - 
No error
  D - 
No error and Nothing will print
7-
Point out the error in the following program.
#include<stdio.h>
#include<stdarg.h>
void display(char *s, ...);
void show(char *t, ...);

int main()
{
    display("Hello", 4, 12, 13, 14, 44);
    return 0;
}
void display(char *s, ...)
{
    show(s, ...);
}
void show(char *t, ...)
{
    int a;
    va_list ptr;
    va_start(ptr, s);
    a = va_arg(ptr, int);
    printf("%f", a);
}

  A - 
Error: invalid function display() call
  B - 
Error: invalid function show() call
  C - 
No error
  D - 
Error: Rvalue required for t
8-
Point out the error in the following program.
#include<stdio.h>
#include<stdarg.h>
void varfun(int n, ...);

int main()
{
    varfun(3, 7, -11.2, 0.66);
    return 0;
}
void varfun(int n, ...)
{
    float *ptr;
    int num;
    va_start(ptr, n);
    num = va_arg(ptr, int);
    printf("%d", num);
}

  A - 
Error: too many parameters
  B - 
Error: invalid access to list member
  C - 
Error: ptr must be type of va_list
  D - 
No error
9-
The macro va_arg is used to extract an argument from the variable argument list and advance the pointer to the next argument.
  A - 
True
  B - 
False
10-
In a function that receives variable number of arguments the fixed arguments passed to the function can be at the end of argument list.
  A - 
True
  B - 
False
 
[Người đăng: Thành Lãm - ST]
Ghé thăm Kênh của Vị Sư "hai lần chết đi sống lại"
Tu Si Chau Soc Thon

https://www.youtube.com/channel/UCoyC9WTTVR-M3qpTKKEXGnQ

Chau Soc Thon Official Channel


Phong Bảo Official
Phong Bao Official
Xem Nhiều nhất
Trắc Nghiệm Pascal - Bài 20
Trắc Nghiệm ASP.NET - Bài 12
Trắc Nghiệm Ngôn Ngữ Lập Trình C - Bài 16
Trắc Nghiệm ASP.NET - Bài 01
Trắc Nghiệm ASP.NET - Bài 03
Trắc nghiệm C++ - Bài 18
Trắc Nghiệm C# - Bài 53
Trắc Nghiệm ASP.NET - Bài 02
Trắc Nghiệm C# - Bài 42
Trắc Nghiệm Java - Bài 01
Trắc Nghiệm ASP.NET - Bài 04
Trắc Nghiệm Pascal - Bài 22
Trắc Nghiệm ASP.NET - Bài 13
Trắc Nghiệm ASP.NET - Bài 09
Trắc Nghiệm ASP.NET - Bài 08
Trắc nghiệm PHP - Bài 01
Trắc Nghiệm ASP.NET - Bài 06
Trắc Nghiệm ASP.NET - Bài 11
Trắc Nghiệm ASP.NET - Bài 05
Trắc Nghiệm ASP.NET - Bài 23
Đề Xuất
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 37
Trắc Nghiệm C Sharp - Bài 27
Trắc Nghiệm Thiết Kế Web - Bài 11
Trắc nghiệm Linux - Bài 47
Trắc Nghiệm Thiết Kế Web Và Flash - Bài 33
Trắc Nghiệm Ngôn Ngữ Lập Trình C - Bài 01
Trắc Nghiệm C# - Bài 41
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 17
Trắc Nghiệm ASP.NET - Bài 01
Trắc Nghiệm Visual Basic - Bài 08
Trắc nghiệm XML - Bài 12
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 04
Trắc Nghiệm C Sharp - Bài 02
Trắc nghiệm XML - Bài 26
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 25
Trắc Nghiệm Pascal - Bài 23
Trắc Nghiệm Thiết Kế Web (English) - Bài 39
Trắc Nghiệm ASP.NET (English) - Bài 23
Trắc Nghiệm C# - Bài 44
Trắc Nghiệm Ngôn Ngữ Lập Trình C - Bài 15
Phát triển hệ thống: TRƯƠNG HỮU ĐỨC - Phiên bản 3.0 - © Copyright 2013 - 2024 - VNEDU.ORG

free counters