What is array in c with example?
How do you convert strings to numbers in C?
What is an auto variable in c?
What is undefined behavior?
write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 Answers Motorola, TCS, Wipro,
Explain what is wrong with this program statement? Void = 10;
hi how to convert program from notepad to turboc editor can u please help me
Can we write a program without main() function?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
What is the significance of an algorithm to C programming?
Determine if a number is a power of 2 at O(1).
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }