What is a program flowchart?
No Answer is Posted For this Question
Be the First to Post Answer
What is strcpy() function?
What is the difference between procedural and declarative language?
write a programme to convert temperature from farenheit to celcius?
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 meaning of 'c' language
Explain what is the heap?
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
why do we use # in c-language?
Function to find the given number is a power of 2 or not?
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Write a program to swap two numbers without using a temporary variable?