Differentiate between the expression “++a” and “a++”?
No Answer is Posted For this Question
Be the First to Post Answer
Explain setjmp()?
What is static function in c?
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
When should the volatile modifier be used?
Function calling procedures? and their differences? Why should one go for Call by Reference?
How to get string length of given string in c?
1)what are limitations for recursive function? 2)write a program to read a text file and count the number of characters in the text file
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
How can you increase the allowable number of simultaneously open files?