Explain the difference between #include "..." And #include <...> In c?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to find the square of a 5 digit number and print the result.
5 Answers Accenture, Sasken, Vimukti Technologies,
what is meant by flushll() in c programming?
Why string is used in c?
Describe explain how arrays can be passed to a user defined function
Can we access the array using a pointer in c language?
Is flag a keyword in c?
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
How to develop software using "c" programming?
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; }
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.