Does sprintf put null character?
No Answer is Posted For this Question
Be the First to Post Answer
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
what is the maximum limit of row and column of a matrix in c programming. in linux .
What is data structure in c language?
What is the use of bitwise operator?
Write a program to find whether the given number is prime or not?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
write a program to swap two variables a=5 , b= 10 without using third variable
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
2. What does static variable mean?
What is the benefit of using const for declaring constants?
What is ## preprocessor operator in c?
what is difference between overriding and overloading?