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
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
What is the difference between abs() and fabs() functions?
HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE
How to establish connection with oracle database software from c language?
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????
a value that does not change during program execution a) variabe b) argument c) parameter d) none
Did c have any year 2000 problems?
How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include<stdio.h>...
In which area global, external variables are stored?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
what is the difference between static variable and register variable?