Why do we use int main instead of void main in c?
Write a code to generate divisors of an integer?
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
What is spark map function?
two variables are added answer is stored on not for third variable how it is possible?
what is the difference between #include<stdio.h> and #include"stdio.h" ?
Explain what is a static function?
How can I run c program?
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?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
Differentiate Source Codes from Object Codes
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }