What is the general form of function in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the benefit of using #define to declare a constant?
What is wrong in this statement?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
What do you mean by dynamic memory allocation in c?
In C programming, what command or code can be used to determine if a number of odd or even?
write a program whose output will be- 1 12 123 1234
plz answer.. a program that takes a string e.g. "345" and returns integer 345
How are Structure passing and returning implemented by the complier?
What is auto keyword in c?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
0 Answers Amdocs, Apps Associates,
Write a function that accepts two numbers,say a and b and makes bth bit of a to 0.No other bits of a should get changed.
2 Answers Scientific Atlanta, Wipro,
How to implement a packet in C