What is header file definition?
No Answer is Posted For this Question
Be the First to Post Answer
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
What is substring in c?
a=5 a=a++/++a
What is the purpose of the preprocessor directive error?
Write a program in c to input a 5 digit number and print it in words.
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
in which language c language is written?
main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }
Explain what is the difference between #include and #include 'file' ?
swap two integer variables without using a third temporary variable?
What does p mean in physics?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.