Is this program statement valid? INT = 10.50;
No Answer is Posted For this Question
Be the First to Post Answer
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
Why do we need functions in c?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Why c is called procedure oriented language?
write a c program to print "Welcome" without using semicolon in the whole program ??
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
write an interactive program to generate the divisors of a given integer.
Explain what is wrong with this program statement?
write a program to print the one dimensional array.
What is the purpose of #pragma directives in C?
What is the stack in c?
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?