What are the 4 types of functions?
No Answer is Posted For this Question
Be the First to Post Answer
What is C language ?
What is the difference between union and structure in c?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
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"
What are dangling pointers?
Explain how do you determine the length of a string value that was stored in a variable?
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
What is maximum size of array in c?
Write a program that can show the multiplication table.
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
What is malloc() function?
What tq means in chat?