-
Stop Watch
I want code for stop watch in c c++ & java.
-
Pointer Drawback
What is the drawback of using pointer?
-
If a,b,c are int variables and a=2, b=4,c=3,d=5, what is the value of the expression
a/b/c*d-a+c*d/b-c. Justify your answer
-
-
Program
Write a program that asks a user to type in their name, sex, age, roll number and store them!
The program should then print the information the user entered
(Hints: use character arrays for name, sex) -
Need help in writing a C program using array and loop statement
Write a C program using arrays and any loop statements that asks the user to enter the number of students. For each student, enter the number of courses. The user should enter the students ID number and the marks for each course. Compute and display the total and average of the students marks.
Sample Output:
Enter the number of students: 2
Enter Student ID No. 1: 082367
Enter... -
-
Language
What is the difference b/w c & java?
-
What is the output of the program
c#include
int main()
{
printf("%c",*"abcde");
return 0;
} -
Whats the output of.....>>?
#include
#include
void main()
{
int a=1;
if(a=1,3,5,6)
printf("good&a=%d",a);
else
printf("bad&a=%d",a);
}
} -
-
What will be output if you will execute following c code?
c #i ain()
{
float p=1,q=2,r=-2,a;
a=avg(p,(q=4,r=-12,q),r);
printf("%f",a); return 0;
}
float avg(float x,float y,float z)
{
return (x+y+z)/3;
}
a) 1.000000
b) 0.333333
c) -2.333333
d) 1 -
-
-
-
-
-
-
-
C Interview Questions
Ans