What is the code for 3 questions and answer check in VisualBasic.Net?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Is the exit() function same as the return statement? Explain.
What is the use of ?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
How can I find out how much free space is available on disk?
In which header file is the null macro defined?
What are linker error?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
Explain c preprocessor?
What is an lvalue in c?
Can the curly brackets { } be used to enclose a single line of code?
What is the heap?
what is use of malloc and calloc?
What does #pragma once mean?