what is c
Answer / paras rajput
c is structure programming language used to implement of potable application software and operating system
| Is This Answer Correct ? | 7 Yes | 0 No |
When a c file is executed there are many files that are automatically opened what are they files?
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
Explain the difference between fopen() and freopen().
What are the types of pointers in c?
Write a program to print factorial of given number without using recursion?
What are inbuilt functions in c?
Can we change the value of #define in c?
How can I open a file so that other programs can update it at the same time?
What is meaning of "Void main" in C Language.
24 Answers Ford, GU, HCL, IBIBS, JUW, TCS,
how to find your architecture is LittleEndian or BigEndian?
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above