what do you mean by defining a variable in our c code?
Answers were Sorted based on User's Feedback
Answer / jugad
Defining a variable means declare its data type , i.e
declaration of data type is very important in c it may be
int, float , long , unsigned,
and initialisation is not so important if you are not
initilize any variable compiler just initialize some garbage
value to that variable.
Courtesy:
http://answerwale.co.cc/?p=24#comment-20
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / nikhil saxena
We only declare & initialize the variables in our code but
we never define them.
| Is This Answer Correct ? | 8 Yes | 4 No |
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
What is the meaning of int *x[]();?
Why pointers are used?
Write a program to print factorial of given number using recursion?
How can you invoke another program from within a C program?
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
do ne body have any idea about the salary for the we r going to have interview. yup .. u got it right ..i m talking abt NIC.
Table of Sudoku n*n
Difference between MAC vs. IP Addressing
Program to find larger of the two numbers without using if-else,while,for,switch
what are enumerations in C
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);