How do you define a function?
No Answer is Posted For this Question
Be the First to Post Answer
What is void c?
Write a c program to demonstrate character and string constants?
A B C D E F G F E D C B A A B C D E F F E D C B A A B C D E E D C B A A B C D D C B A A B C C B A A B B A A A
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
What is the difference between int and float?
What is the main difference between calloc () and malloc ()?
Write down the program to sort the array.
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
Explain the advantages of using macro in c language?
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
Can the sizeof operator be used to tell the size of an array passed to a function?
What is the difference between exit() and _exit()?