What is the difference between mpi and openmp?
What is a static function in c?
what is reason of your company position's in india no. 1.
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(“%d”,*(*(x+1)+3));
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
Why do we use header files in c?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
Write a program in c to print * * * * * *******
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
What is anagram in c?
How important is structure in life?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,