How many identifiers are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is an array
will u give me old quesrion papers for aptitude for L & t info tech?
#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
Explain what is the use of a semicolon (;) at the end of every program statement?
Explain what are compound statements?
What is Your Name :)
write a program which counts a product of array elements lower than 10.
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
how do you execute a c program in unix.
What are conditional operators in C?