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? main() { static in a=5; printf("%3d",a--); if(a) main(); }
What is array of structure in c programming?
What is the sizeof () a pointer?
What do you know about the use of bit field?
What math functions are available for integers? For floating point?
How will you find a duplicate number in a array without negating the nos ?
What will be the outcome of the following conditional statement if the value of variable s is 10?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
Define function ?Explain about arguments?
2 Answers Geometric Software, Infosys,
What will happen when freeing memory twice
What is use of null pointer in c?
what is c programing