#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,200,100
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
Why do we use & in c?
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
convert 12345 to 54321 withoutusing strig
What is the mean of this statement:: if(int i=0 * i=9)
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
how to use enum datatype?Please explain me?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
What is the purpose of the preprocessor directive error?
What is the difference between mpi and openmp?
what is a function pointer and how all to declare ,define and implement it ???
application of static variables in real time