What is the code for 3 questions and answer check in
VisualBasic.Net?
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)...
Which function in C can be used to append a string to another string?
#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?
What is an object?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
what is available in C language but not in C++?
10 Answers CTS, TCS,
write a program to print the one dimensional array.
How can I find out how much free space is available on disk?
What is a structure member in c?
In scanf h is used for
print a "hello" word without using printf n puts in c language
What does %c mean in c?