What is the difference between mpi and openmp?
No Answer is Posted For this Question
Be the First to Post Answer
Explain about block scope in c?
What happens if a header file is included twice?
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
Is c an object oriented programming language?
develop algorithms to add polynomials (i) in one variable
Expand the following LKB BKL FFG
Write a program to print factorial of given number without using recursion?
what is used instead of pointers in java than c?
What are examples of structures?
You are given a string which contains some special characters. You also have set of special characters. You are given other string (call it as pattern string). Your job is to write a program to replace each special characters in given string by pattern string. You are not allowed to create new resulting string. You need to allocate some new memory to given existing string but constraint is you can only allocate memory one time. Allocate memory exactly what you need not more not less.
Explain about the functions strcat() and strcmp()?