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
pascal triangle program
What is extern keyword in c?
praagnovation
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
Write a program to reverse a string.
0 Answers Global Logic, iNautix, TCS, Wipro,
Which is best book for data structures in c?
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Explain spaghetti programming?