Is c weakly typed?
No Answer is Posted For this Question
Be the First to Post Answer
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
Why header files are used?
what are the stages of compilation
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
What is the difference b/w Structure & Class?
Where register variables are stored in c?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What is the size of enum in bytes?
Is c still relevant?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Why do we use static in c?