What is a program flowchart and explain how does it help in writing a program?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between null and void pointers.
What is the difference function call by value & function call by reference?
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END
What do you mean by c?
How can I trap or ignore keyboard interrupts like control-c?
What are volatile variables in c?
What are disadvantages of C language.
Is c procedural or object oriented?
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Are enumerations really portable?