Explain what are the different file extensions involved when programming in c?
No Answer is Posted For this Question
Be the First to Post Answer
#define f(x) main() { printf("\n%d",f(2+2)); }
What is difference between array and pointer in c?
What is data type long in c?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
Find the largest number from the given 2 numbers without using any loops and the conditional operator.
Implement bit Array in C.
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
What the advantages of using Unions?
How do you override a defined macro?