Does sprintf put null character?
No Answer is Posted For this Question
Be the First to Post Answer
Find MAXIMUM of three distinct integers using a single C statement
What are the primitive data types in c?
write a program which counts a product of array elements lower than 10.
What's the best way of making my program efficient?
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
how to find the kth smallest element in the given list of array elemnts.
#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,
Why is C called a middle-level language?
Explain the difference between call by value and call by reference in c language?
How does C++ help with the tradeoff of safety vs. usability?
write a program to display the numbers in the following 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above