How do you construct an increment statement or decrement statement in C?
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 C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL
When should the volatile modifier be used?
How are strings stored in c?
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
Why is c so important?
how do you execute a c program in unix.
Can we declare a function inside a function in c?
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
main() { int i; printf("%d",scanf"%d",&i))//if the input is 12 24 34 then wat will be the output }
HOW TO SWAP TWO NOS IN ONE STEP?
How can I change the size of the dynamically allocated array?