WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
Answer / madhavi
e task which is completed with in short time is called in technology..
| Is This Answer Correct ? | 1 Yes | 0 No |
How can I remove the trailing spaces from a string?
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)
what are the advantages & disadvantages of unions?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
how to swap 2 numbers in a single statement?
What are disadvantages of C language.
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
Give me the code of in-order recursive and non-recursive.
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
What is a c token and types of c tokens?
wtite a program that will multiply two integers in recursion function