"%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 the structure pointer?
What is getche() function?
without a terminator how can we print a message in a printf () function.
ATM machine and railway reservation class/object diagram
Write a program to implement queue.
What is context in c?
What is dynamic variable in c?
Tell me can the size of an array be declared at runtime?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
What are the 5 elements of structure?
#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }