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 |
How many levels deep can include files be nested?
What is far pointer in c?
What is extern variable in c with example?
How many bytes are occupied by near, far and huge pointers (dos)?
What is auto keyword in c?
size maximum allocated by calloc()
main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }
4 Answers Vector, Wipro, Zoho,
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
write a program to print calender using for loop.
What is oops c?
logic for x=y^n
Explain how do you determine a file’s attributes?