What is the code for 3 questions and answer check in
VisualBasic.Net?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...

1 Answers   Infosys,


Which function in C can be used to append a string to another string?

0 Answers  


#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


What is an object?

5 Answers  


How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?

0 Answers  


what is available in C language but not in C++?

10 Answers   CTS, TCS,


write a program to print the one dimensional array.

1 Answers  


How can I find out how much free space is available on disk?

0 Answers  


What is a structure member in c?

0 Answers  


In scanf h is used for

4 Answers   BFL,


print a "hello" word without using printf n puts in c language

6 Answers  


What does %c mean in c?

0 Answers  


Categories