What is difference between class and structure?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
how many error occurs in C language ?
How can I find out how much memory is available?
What is a program flowchart and explain how does it help in writing a program?
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
Write a simple code fragment that will check if a number is positive or negative.
What is meant by errors and debugging?
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?
What is an operator?
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
Explain do array subscripts always start with zero?
Write a progarm to find the length of string using switch case?