Why is sizeof () an operator and not a function?
No Answer is Posted For this Question
Be the First to Post Answer
please help me.. how to write a code of this output?? "Enter range number:"10 1 is an odd number 2 is an even numbers 3 in an odd numbers 4 " to 10" "printing all odd numbers:" 1,3,5,7,9 "printing all even numbers:" 2,4,6,8,10 "sum of all odd numbers:25 "sum of all even numbers:30 using a C Programming ARRAY pleas pleas help.. its my project ..please :(
Describe how arrays can be passed to a user defined function
what is ur strangth & weekness
0 Answers Cognizant, LG Soft, NetEnrich,
Compare interpreters and compilers.
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Explain how can I prevent another program from modifying part of a file that I am modifying?
What are all different types of pointers in c?
What is switch in c?
Explain how can I make sure that my program is the only one accessing a file?
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
write a program to print data of 5 five students with structures?
What are the types of data files?