What do you mean by c?


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

Post New Answer

More C Interview Questions

what are bit fields in c?

0 Answers  


what is the significance of static storage class specifier?

0 Answers  


struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));

2 Answers  


Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon

0 Answers   HCL,


how to find binary of number?

2 Answers  






what are the advantages & disadvantages of unions?

2 Answers  


What happens if header file is included twice?

0 Answers  


find out largest elemant of diagonalmatrix

0 Answers  


Which is an example of a structural homology?

0 Answers  


Is register a keyword in c?

0 Answers  


Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.

0 Answers  


void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }

3 Answers  


Categories