count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be
a) 0
b) 11
c) 55
d) array
No Answer is Posted For this Question
Be the First to Post Answer
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
What are the types of arrays in c?
Why is c so powerful?
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.
State two uses of pointers in C?
write a c program to find largest of three numbers using simple if only for one time.
Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
What is class and object in c?