Explain how can you tell whether two strings are the same?
What does 3 periods mean in texting?
Why calloc is better than malloc?
Can a local variable be volatile in c?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
What is the use of the #include directive?
What are reserved words?
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
Who developed c language and when?
What is external and internal variables What is dynamic memory allocation what is storage classes in C
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
What is the difference between NULL and NUL?
How can a string be converted to a number?