What would happen to X in this expression: X += 15; (assuming the value of X is 5)
No Answer is Posted For this Question
Be the First to Post Answer
What are bitwise shift operators in c programming?
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
difference between object file and executable file
main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }
1 Answers Vector, Vector India,
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
WAP TO ACCEPT STRING AND COUNT A COMES N TIMES B COMES N TIMES C COMES N TIMES D COMES N TIMES AND SO ON......... AT LAST UNTIL Z COMES N TIMES...............
Describe explain how arrays can be passed to a user defined function
What is the most efficient way to store flag values?
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
Explain About fork()?
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
How will you declare an array of three function pointers where each function receives two ints and returns a float?