The difference between printf and fprintf is ?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between calloc() and realloc()?
c program to arrange digits in a no in ascending and descending order
How to declare a variable?
write a program to generate 1st n fibonacci prime number
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
What is equivalent to ++i+++j?
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
what are the files which are automatically opened when a c file is executed?
What is the size of a union variable?
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
what is the use of ~ in c lang?????
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?