Explain what is the difference between declaring a variable and defining a variable?
Answer Posted / ss
Declaring variable means
Eg- int a;
Defining variable means we are giving some integer value to that a variable
Eg- a=100;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what does the format %10.2 mean when included in a printf statement?
What is a c token and types of c tokens?
Do you have any idea how to compare array with pointer in c?
List out few of the applications that make use of Multilinked Structures?
What is the difference between malloc() and calloc()?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What header files do I need in order to define the standard library functions I use?
Explain the difference between exit() and _exit() function?
What is const and volatile in c?
In C, What is the #line used for?
What are the applications of c language?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
How are variables declared in c?
What the advantages of using Unions?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?