Explain how can you determine the size of an allocated portion of memory?


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

Post New Answer

More C Interview Questions

Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments

6 Answers   TCS,


What are global variables?

0 Answers  


How can you determine the maximum value that a numeric variable can hold?

0 Answers  


#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?

16 Answers   Accel Frontline, Opera, Oracle,


What does int main () mean?

0 Answers  


how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......

10 Answers   Infosys,


#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }

3 Answers  


Is stack a keyword in c?

0 Answers  


What are the two types of functions in c?

0 Answers  


What is nested structure?

0 Answers  


What is the size of structure pointer in c?

0 Answers  


What is include directive in c?

0 Answers  


Categories