What does sizeof function do?


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

Post New Answer

More C Interview Questions

Please list all the unary and binary operators in C.

3 Answers  


main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }

1 Answers  


What is wild pointer in c with example?

0 Answers  


1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do

1 Answers   AAS, Nagarro, Vuram,


can any one provide me the notes of data structure for ignou cs-62 paper

0 Answers   Ignou,






What are 3 types of structures?

0 Answers  


What are control structures? What are the different types?

0 Answers  


What are the functions to open and close the file in c language?

0 Answers  


Write a program for deleting duplicate elements in an array

3 Answers   Subex,


i=10,j=20 j=i,j?(i,j)?i:j:j print i,j

1 Answers   CSC,


Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV

5 Answers   Accenture,


Write a code to remove duplicates in a string.

0 Answers   Expedia,


Categories