Explain what is the difference between far and near ?
No Answer is Posted For this Question
Be the First to Post Answer
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
How can I remove the trailing spaces from a string?
What is data type long in c?
How can I ensure that integer arithmetic doesnt overflow?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
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
What is the correct code to have following output in c using nested for loop?
What are keywords in c with examples?
What is memmove?
Write a program to generate random numbers in c?
What do you mean by command line argument?
please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC