What is scanf_s in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are identifiers in c?
Difference between goto, long jmp() and setjmp()?
wt is d full form of c
What are runtime error?
What is memcpy() function?
A program to write a number of letters and numbers, such as counting and display
What are the types of variables in c?
What is undefined behavior?
we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?
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?
control 50 devices which has 2 states on and off.using bitwise operator.plz answer it its urgent
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