Latest Answer: #include#includevoid main(){int x,y,z;clrscr();printf("enter the number");scanf("%d",&x);while(x>0){y=x%10;printf("%d",y);x=x/10;}getch();} ...
Latest Answer: the default argument and parameter for main function is "void" ...
with the program
Latest Answer: void main(){ char s[10]; int i; scanf("%s",s); for(i=0;s[i]!='';i++); printf("The length of the given string",--i); getch();}thank you!!!!!!!!!!!! ...
Latest Answer: typedef struct means : it tells the allies name of structEX:typedef struct{int data,y;float s;}sa;sa s1,s2;struct: struct is a keyword for define a multlple type variable ...
Latest Answer: Function Declaration means telling the compiler what are the types of arguments that are passed toa function , what type of data type it will return. It is ended with a semicolon (;).Eg : int add(int , int);int add(int a, int b);Definition of a function ...
Latest Answer: void printBinary(int n){if (n>0){printBinary(n/2);printf("%c","01"[n%2]);}else{printf("n");}}int main(){int num;printf("Enter the number in decimal");scanf("%d",&num);printf("The binary equivalent ...
When dynamic allocation of memory is done by using malloc then how is the memory allocated in sequential or in some other format ?
View page << Previous 3 4 5 6 [7] 8 9 10 11 Next >>

Go Top