What is static identifier?
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of operator ^ in C ? and how it works?
How will you delete a node in DLL?
Create a simple code fragment that will swap the values of two variables num1 and num2.
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
What does 4d mean in c?
write a “Hello World” program in “c” without using a semicolon?
Is there something we can do in C but not in C++? Declare variable names that are keywords in C++ but not C.
Explain the difference between #include "..." And #include <...> In c?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
what is the use of c program?
4 Answers Synergy, Web Synergies,
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300