How can you tell whether two strings are the same?
how to construct a simulator keeping the logical boolean gates in c
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
what is the diference between pointer to the function and function to the pointer?
program to find the magic square
What is static volatile in c?
char ch="{'H','I',0};printf("%s",ch);what is output
How to add two numbers without using semicolon at runtime
Mention four important string handling functions in c languages .
Difference between null pointer and dangling pointer?
What is the meaning of int *x[]();?
Why does everyone say not to use gets?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }