What are variables c?
No Answer is Posted For this Question
Be the First to Post Answer
How can I delete a file?
What will be the outcome of the following conditional statement if the value of variable s is 10?
Write a code to generate a series where the next element is the sum of last k terms.
c program to input values in a table(using 2D array) and print odd numbers from them
what is the difference between getch() and getche()?
without a terminator how can we print a message in a printf () function.
What is the sizeof () operator?
long int size a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
18 Answers Acropolis, HCL, Intel, TCS,
write a program in c language for the multiplication of two matrices using pointers?
When should a type cast be used?
What is function what are the types of function?
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