Why does the call char scanf work?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
Explain what is meant by 'bit masking'?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I NEED AN ANSWER THAT IMPRESS THE INTERVIEWER
Explain #pragma in C.
What is header file definition?
Write a code to remove duplicates in a string.
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
what is difference between c and c++
what is the meaning of 'c' language
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
Explain what is wrong in this statement?