Write the control statements in C language
No Answer is Posted For this Question
Be the First to Post Answer
Write a program with dynamically allocation of variable.
What do you mean by dynamic memory allocation in c?
How can I automatically locate a programs configuration files in the same directory as the executable?
what is the diference between pointer to the function and function to the pointer?
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
What is a floating point in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is exit() function?
What is difference between static and global variable in c?
Define and explain about ! Operator?
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175