What is the stack in c?
No Answer is Posted For this Question
Be the First to Post Answer
How to write a multi-statement macro?
What are the types of data files?
how to return 1000 variables from functio9n in c?plz give me code also
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
write a program to check whether a number is Peterson or not.
Is it possible to run a c program without using main?If yes HOW??
What does it mean when a pointer is used in an if statement?
write a C program to print the program itself ?!
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
Please list all the unary and binary operators in C.
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.