Is printf a keyword?
No Answer is Posted For this Question
Be the First to Post Answer
What's the difference between a linked list and an array?
how to find that no is int or float?
What are function pointers? Provide an example.
what is used instead of pointers in java than c?
Why do some versions of toupper act strangely if given an upper-case letter?
Explain what is the difference between text files and binary files?
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me
. 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
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
What is c value paradox explain?
How can you increase the size of a statically allocated array?