What is the general form of #line preprocessor?
No Answer is Posted For this Question
Be the First to Post Answer
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 a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)
Explain how can I write functions that take a variable number of arguments?
what is the difference between while and do while?
for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????
There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.
15 Answers Cisco, Google, MBT,
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
Write a program to reverse a linked list in c.
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
Write a program to print "hello world" without using a semicolon?
how should functions be apportioned among source files?