can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
1 3322In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
5 7425
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
How do you determine a file’s attributes?
What is the sizeof () operator?
What is scanf () in c?
Explain what is output redirection?
What are the types of assignment statements?
How do you write a program which produces its own source code as output?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Hi can anyone tell what is a start up code?
How can I automatically locate a programs configuration files in the same directory as the executable?
What will be your course of action for a push operation?
Explain how do you sort filenames in a directory?
What is exit() function?
Explain what are the advantages and disadvantages of a heap?
How do c compilers work?