What is the use of
in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to print %d ?
how to find the sizof of any datatype using bit manipulations
What is the difference between malloc calloc and realloc in c?
How can I get back to the interactive keyboard if stdin is redirected?
What is difference between array and pointer in c?
Explain what are the different file extensions involved when programming in c?
what will be the output for the following main() { printf("hi" "hello"); }
the question is that what you have been doing all these periods (one year gap)
what is difference between #include<stdio.h> and #include"stdio.h"
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
How many identifiers are there in c?