Explain what is the difference between declaring a variable and defining a variable?
Answer / 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 |
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
What are dangling pointers in c?
Why is structure padding done in c?
what is event driven software and what is procedural driven software?
What is a program flowchart and explain how does it help in writing a program?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
what is output of the following statetment?Printf(“%x”, -1<<4); ?
Tell us bitwise shift operators?
what is pointer ?
10 Answers Kernex Micro Systems,
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
write a program of palindrome(madam=madam) using pointer?
diff between exptected result and requirement?