Define the scope of static variables.
No Answer is Posted For this Question
Be the First to Post Answer
The difference between printf and fprintf is ?
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
What are reserved words with a programming language?
Difference between goto, long jmp() and setjmp()?
program to find the roots of a quardratic equation
what different between c and c++
Does * p ++ increment p or what it points to?
pgm to find middle element of linklist(in efficent manner)
In c language can we compile a program without main() function?
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.
Is there a way to jump out of a function or functions?
What is a pragma?