Why is sprintf unsafe?
No Answer is Posted For this Question
Be the First to Post Answer
What's wrong with "char *p = malloc(10);" ?
int x=5; printf("%d%d%d",x,x<<2,x>>2);
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?
25 Answers Datamatics, Solartis, TCS, ThinkBox, Trine,
What is data type long in c?
What is a memory leak? How to avoid it?
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
What do you mean by Recursion Function?
what is constant pointer?
what is the difference between procedure oriented and object oriented progaming language
What is the symbol indicated the c-preprocessor?
write a program to remove occurrences the word from entered text?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none