What is the difference between mpi and openmp?
No Answer is Posted For this Question
Be the First to Post Answer
what is default constructor?
Write a program in C to reverse a number by recursive function?
Here is a good puzzle: how do you write a program which produces its own source code as output?
What is difference between structure and union?
wap in c to accept a number display the total count of digit
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
What is the difference between c and python?
How can you invoke another program from within a C program?
Why double pointer is used in c?
What are the 4 types of organizational structures?
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.