How can I list all of the predefined identifiers?
No Answer is Posted For this Question
Be the First to Post Answer
What are Macros? What are its advantages and disadvantages?
which operator is known as dummy operator in c?
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
can anyone proide me reading material on svit00ef27@yahoo.com please thanx in advance
What is 2 d array in c?
code for quick sort?
How to print "I Love My India" without using semi colon?
what value is returned to operating system after program execution?
what is use of loop?
How do you override a defined macro?
Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol