What is the use of parallelize in spark?
No Answer is Posted For this Question
Be the First to Post Answer
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Is it possible to have a function as a parameter in another function?
List the different types of c tokens?
const char * char * const What is the differnce between the above tow?.
what is the difference between #include<> and #include”…”?
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
write a program to convert a expression in polish notation (postfix) to inline (normal)
write a Program to dispaly upto 100 prime numbers(without using Arrays,Pointer)
26 Answers ADITI, iFlex, Infosys, Oracle, TCS, Unicops, Wipro,
what is the difference between while and do while?
How does free() know explain how much memory to release?