how do you execute a c program in unix.
No Answer is Posted For this Question
Be the First to Post Answer
How can we see the Expanded source code and compiled code for our source program in C?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
What is c basic?
f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error
what is the difference between postfix and prefix unary increment operators?
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?
what are the files which are automatically opened when a c file is executed?
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
what is the little endian and big endian?
How to add two numbers without using semicolon n c????
What does sizeof int return?
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}