how do you execute a c program in unix.
No Answer is Posted For this Question
Be the First to Post Answer
why 'c' is called middle level language.
How can you draw circles in C?
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
write a program for the normal snake games find in most of the mobiles.
What is void c?
What is the difference between array and pointer?
If the size of int data type is two bytes, what is the range of signed int data type?
How can we see the Expanded source code and compiled code for our source program in C?
List a few unconditional control statement in c.
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
what is difference between overriding and overloading?
1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=