What will be the result of the following program?
main()
{
char p[]="String";
int x=0;
if(p=="String")
{
printf("Pass 1");
if(p[sizeof(p)-2]=='g')
printf("Pass 2");
else
printf("Fail 2");
}
else
{
printf("Fail 1");
if(p[sizeof(p)-2]=='g')
printf("Pass 2");
else
printf("Fail 2");
}
}
a) Pass 1, Pass 2
b) Fail 1, Fail 2
c) Pass 1, Fail 2
d) Fail 1, Pass 2
e) syntax error during compilation
Answer Posted / rakhi
b) Fail 1 Fail 2
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Which of these functions is safer to use : fgets(), gets()? Why?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What does sizeof return c?
What are different storage class specifiers in c?
Explain spaghetti programming?
Can you write the function prototype, definition and mention the other requirements.
Differentiate between ordinary variable and pointer in c.
Describe explain how arrays can be passed to a user defined function
What are c header files?
Tell us something about keyword 'auto'.
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
What is the difference between functions getch() and getche()?
How to get string length of given string in c?
What is the difference between fread and fwrite function?
Explain what is page thrashing?