What is sizeof c?


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

Post New Answer

More C Interview Questions

IS Doon college of Engn.. has good faculty

1 Answers  


Why shouldn’t I start variable names with underscores?

0 Answers  


How can I list all of the predefined identifiers?

0 Answers  


C language questions for civil engineering

0 Answers   Tech Mahindra,


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

0 Answers   Wilco,






Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?

0 Answers  


Can we change the value of constant variable in c?

0 Answers  


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

1 Answers  


why integer range between -327680to+32767

2 Answers  


write a program that finds the factorial of a number using recursion?

13 Answers   Infosys, TATA,


What is structure padding and packing in c?

0 Answers  


I just typed in this program, and it is acting strangely. Can you see anything wrong with it?

0 Answers  


Categories