Difference between malloc() and calloc() function?
write a c program to find the square of a 5 digit number and print the result.
5 Answers Accenture, Sasken, Vimukti Technologies,
How can I write functions that take a variable number of arguments?
How many types of arrays are there in c?
What Is The Difference Between Null And Void Pointer?
What is the memory allocated by the following definition ? int (*x)[10];
helllo sir give me some information of the basic information the c as printf ,scanf , %d ,%f and why is the main use of these.
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
11 Answers HCL, Vector, Vector India, Vector Solutions, Wipro,
What is "Hungarian Notation"?
What is the concatenation operator?
How can I make a program in c to print 'Hello' without using semicolon in the code?
9 Answers C DAC, Practical Viva Questions,
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
Why is not a pointer null after calling free?