which type of aspect you want from the student.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What do you know about the use of bit field?

0 Answers  


int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }

3 Answers   HCL,


In a byte, what is the maximum decimal number that you can accommodate?

0 Answers  


You are given a string which contains some special characters. You also have set of special characters. You are given other string (call it as pattern string). Your job is to write a program to replace each special characters in given string by pattern string. You are not allowed to create new resulting string. You need to allocate some new memory to given existing string but constraint is you can only allocate memory one time. Allocate memory exactly what you need not more not less.

2 Answers   Microsoft,


provide an example of the Group by clause, when would you use this clause

0 Answers  






Explain how can I open a file so that other programs can update it at the same time?

0 Answers  


Write a program to find whether the given number is prime or not?

6 Answers  


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

7 Answers   Accenture,


What is string constants?

0 Answers  


What are the preprocessor categories?

0 Answers  


what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }

6 Answers   Microsoft,


How we can write a value to an address using macro..?

0 Answers   Tata Elxsi,


Categories