if a is an integer variable, a=5/2; will return a value
a) 2.5
b) 3
c) 2
d) 0
No Answer is Posted For this Question
Be the First to Post Answer
What are variables and it what way is it different from constants?
read a number & print all its devisors using c-program?
What are terms in math?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?
4 Answers Amazon, Apple, Bata, Google, NASA,
What is a lvalue
#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
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
What is variable and explain rules to declare variable in c?
How are 16- and 32-bit numbers stored?
Can the sizeof operator be used to tell the size of an array passed to a function?
What is c token?