How can you avoid including a header more than once?
No Answer is Posted For this Question
Be the First to Post Answer
Do you know what is the purpose of 'extern' keyword in a function declaration?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
what is disadvantage of pointer in C
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
Who is the founder of c language?
Is stack a keyword 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
Using which language Test cases are added in .ptu file of RTRT unit testing???
What are different types of pointers?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Explain the difference between strcpy() and memcpy() function?