Answer Posted / sam
In case of unix
cc FileName.c to compile and the output would be in a file
to fetch it
type ./a.out
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the difference between fread buffer() and fwrite buffer()?
What is an identifier?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
What is the difference between array_name and &array_name?
In which layer of the network datastructure format change is done
Describe dynamic data structure in c programming language?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Why is it usually a bad idea to use gets()? Suggest a workaround.
What is infinite loop?
What is the right type to use for boolean values in c?
Why doesnt this code work?
What is define directive?
Where can I get an ansi-compatible lint?
What is the process to generate random numbers in c programming language?