Which is best book for data structures in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is modeling?
why we wont use '&' sing in aceesing the string using scanf
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
Explain what does a function declared as pascal do differently?
How do you print only part of a string?
how to use showbits function?
Do you know the purpose of 'register' keyword?
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
What is wrong with this initialization?
There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?
What are the types of variables in c?
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.