What is #define size in c?
No Answer is Posted For this Question
Be the First to Post Answer
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is the most efficient way to count the number of bits which are set in a value?
What does the error 'Null Pointer Assignment' mean and what causes this error?
How would you print out the data in a binary tree, level by level, starting at the top?
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
What are inbuilt functions in c?
Can two or more operators such as and be combined in a single line of program code?
How many levels of indirection in pointers can you have in a single declaration?
0 Answers Agilent, ZS Associates,
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
give one ip, find out which contry
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.
Do you know the use of 'auto' keyword?