Take a note while surfing.
Give your Note a Colorful Tag.
Stay on same information and in Sync wherever you are.
Organize your information,It may take Shape.
Differ your Content by Color.
Easy to pull up your content from anywhere anytime.
Don't Let information to miss,Because it take shape
Simple an Easy Way to take a note.
Get the same in next visit.
Please wait...
1. fputs function is used to
Answer: Option D
Explanation:Here is no explanation for this answer
Workspace
BOA (Bank of America)
2. The function fprintf is used in a program
Answer: Option C
Explanation:Here is no explanation for this answer
Workspace
No Tags on this question yet!
3. What is the following C Program doing?
void main ()
{
char line [80];
gets (line);
puts (line);
}
Answer: Option D
Explanation:Here is no explanation for this answer
Workspace
No Tags on this question yet!
4. if i,j,k are integers, the scanf function to enter i,j,k such that i is decimal,j is octal and k is hexadecimal would be
Answer: Option C
Explanation:Here is no explanation for this answer
Workspace
No Tags on this question yet!
5. What would be the output of the following C program if input to the program is 'e'?
void main ()
{
char lower, upper;
lower = getchar();
upper= toupper (lower);
putchar (upper);
}
Answer: Option C
Explanation:Here is no explanation for this answer
Workspace
No Tags on this question yet!
6. float x, y, z;
scanf ("%f %f", &x, &y);
If input stream contains "4.2 3 2.3 ..."
What will x and y contain after scanf?
Answer: Option A
Explanation:Here is no explanation for this answer
Workspace
No Tags on this question yet!