"%u" unsigned integer print the
a) address of variable
b) value of variable
c) name of a variable
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
What is use of #include in c?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
How main function is called in c?
list the no of files created when c source file is compiled
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
Is there a way to compare two structure variables?
What is the use of extern in c?
Explain Function Pointer?
How can you find the exact size of a data type in c?
how to execute a program using if else condition and the output should enter number and the number is odd only...
1)what are limitations for recursive function? 2)write a program to read a text file and count the number of characters in the text file
How can I discover how many arguments a function was actually called with?