What is spaghetti programming?
No Answer is Posted For this Question
Be the First to Post Answer
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Can we add pointers together?
How can you find out how much memory is available?
Where static variables are stored in c?
Is there a way to compare two structure variables?
What is a floating point in c?
Is c still relevant?
what is difference between userlevel threads and kernel level threads ?what are the trades offs between these two approaches ? what approach is most frequently used and why ?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static Which of the Following Statements are true w.r.t Bit-Fields A)a,b&c B)Only a & b C)Only c D)All
3 Answers Accenture, Digg.com,
program to find the second largest word in a paragraph amongst all words that repeat more thn twice
What is the scope of an external variable in c?