#include<stdio.h>
#include<conio.h>
void main()
{
int m=0111,n=20;
printf("%d%d\n",m,n);
getch();
}
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?
1,4,8,13,21,30,36,45,54,63,73,?,?.
10 Answers AMB, Franklin Templeton,
why should i select you?
Print all numbers which has a certain digit in a certain position eg: number=45687 1 number=4 2 number=5 etc
Should a function contain a return statement if it does not return a value?
How do you search data in a data file using random access method?
Write a program to generate prime factors of a given integer?
how to find sum of 5 digits in C?
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
what are the 10 different models of writing an addition program in C language?
Hi, main() { } Is a user defined function or Built in Functionn