Is it possible to initialize a variable at the time it was declared?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
What do you mean by dynamic memory allocation in c? What functions are used?
Explain about C function prototype?
Why is c called c?
Explain how do you print an address?
Are bit fields portable?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
What kind of structure is a house?
a=5 a=a++/++a
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
Whether there can be main inside another main?If so how does it work?
What is the significance of an algorithm to C programming?