What is an array? What the different types of arrays in c?
No Answer is Posted For this Question
Be the First to Post Answer
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
Is fortran faster than c?
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
where do we use structure pointer?
How are Structure passing and returning implemented by the complier?
whether itis a structured language?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
marge linklist
How many types of operators are there in c?
`write a program to display the recomended action depends on a color of trafic light using nested if statments