01
Feb
Nothing found!
It looks like nothing was found here!
Top Categories
11 Posts
Latest Blogs
12
Jul
Explain Call by Value in C language ?
By
Editor
Answer : In call by value, original value is not modified...
1 Min Read
12
Jul
Write a program without using library functions ?
By
Editor
Answer : C Standard library functions are inbuilt functions in C programming...
1 Min Read
12
Jul
Pattern programs in C ?
By
Editor
Answer : Pattern programs in C print various patterns of numbers and stars...
1 Min Read
12
Jul
Difference between data structure and database ?
By
Editor
Answer : Data Structure is about storing data...
1 Min Read
12
Jul
How to count alphabets, numeric and special characters ?
By
Editor
Answer : In this example, we have to count digits, spaces, special...
1 Min Read
12
Jul
How to convert hexadecimal to binary using c language ?
By
Editor
Answer : To convert hexadecimal to binary using c language...
1 Min Read
12
Jul
1 Min Read
12
Jul
main () {int x=20, y=35; x = y++ + x++; y = ++y + ++x; printf (“%d %d\n”, x, y);} ?
By
Editor
Answer : While calculating the y value, x & y values are preincremtned, so x &...
1 Min Read