1. What is make and how objects are gerenerated in makefile system?
2. creat a a linked list and insert a node into the listusing functionpointer.
|
1) What is the output of this C code?
#include <stdio.h>
int main()
{
int i = 5;
i = i / 3;
printf("%d\n", i);
return 0;
}
A. Implementation defined
|
1) What is the output of this C code?
#include <stdio.h>
int main()
{
int i = 3;
int l = i / -2;
int k = i % -2;
printf("%d %d\n", l, k);
return 0;
}
A. Compile time error
|
1) What is the output of this C code?
#include <stdio.h>
int main()
{
int i = -3;
int k = i % 2;
printf("%d\n", k);
}
A. Compile time error
B.
|
1) Comment on the output of this C code?
#include <stdio.h>
int main()
{
float f1 = 0.1;
if (f1 == 0.
|
1) Comment on the output of this C code?
#include <stdio.h>
int main()
{
float f1 = 0.1;
if (f1 == 0.
|
1) Which of the following is not a valid variable name declaration?
A. int _a3;
B. int a_3;
C.
|
1) Which of the following is not valid variable name declaration?
A. int __a3;
B. int __3a ;
C.
|
1) What would be the equivalent pointer expression for referring the array element a[i][j][k][l]
A. ((((a+i)+j)+k)+l)
B. *(*(*(*(a+i)+j)+k)+l)
C.
|
1) The "C" language is
A.Context free language
B.Context sensitive language
C.
|
1)Who is father of C Language?
A.Bjarne Stroustrup
B. Dennis Ritchie
C.
|
Absolute path
The path name for a file or directory beginning at the root directory and including the leading slash (/).
Accelerator keys
Keystrokes that select menu options of functions without pressing the button or selecting the menu.
Account
The environment that a user accesses in order to log into the system.
|
1. Being late: It seems so obvious, but here's a reminder to be on time for a job interview—or better yet, 10 minutes early. Dashing through the revolving door five minutes after the hour does not leave the impression most job seekers hope to leave.
|