-
would like to move all desktop:~/Downloads/*.avi files from my desktop to laptop:~/Download/ using rsync. How do I delete source file …
- 142 views
- 0 answers
- 0 votes
-
How to write a program in c language to check odd or even number
- 531 views
- 1 answers
- 0 votes
-
Write a c program to check palindrome number.
- 308 views
- 1 answers
- 0 votes
-
What is structure?
- 362 views
- 0 answers
- 0 votes
-
Which bitwise operator is suitable for checking whether a particular bit is ON or OFF?
- 313 views
- 0 answers
- 0 votes
-
What is the difference between ‘for’ and ‘while’ loops?
- 334 views
- 0 answers
- 0 votes
-
What is scope & storage allocation of extern and global variables?
- 306 views
- 0 answers
- 0 votes
-
What is the difference between declaring a variable and defining a variable?
- 275 views
- 0 answers
- 0 votes
-
Write a C Program to find the Sum of First n Natural numbers
- 359 views
- 0 answers
- 0 votes
-
What is the difference between the constants 123 and “123” ?
- 406 views
- 0 answers
- 0 votes
-
What are the largest and smallest values that can be reliably stored in a variable of type int ?
- 564 views
- 0 answers
- 0 votes
-
What are some uses for comments in C program?
- 221 views
- 0 answers
- 0 votes
-
what is the line at the top of a C source file for?
- 213 views
- 0 answers
- 0 votes
-
#include <stdio.h> int fun(int n) { int i, j, sum = 0; for(i = 1;i<=n;i++) for(j=i;j<=i;j++) sum=sum+j; return(sum); } int …
- 858 views
- 0 answers
- 0 votes
-
int main() { char a[2][3][3] = {‘e’,’d,’u’,’g’,’u’,’r’,’u’,’.’,’i’,’n’}; printf(“%s “, **a); getchar(); return 0; }
- 374 views
- 0 answers
- 0 votes
-
# include <stdio.h> int main() { int i=0; for(i=0; i<20; i++) { switch(i) { case 0: i+=5; case 1: i+=2; …
- 511 views
- 1 answers
- 0 votes
-
#include <stdlib.h> #include <stdio.h> enum {false, true}; int main() { int i = 1; do { printf(“%d\n”, i); i++; if …
- 535 views
- 1 answers
- 0 votes
-
#include<stdio.h> int main() { static int i=5; if(–i){ main(); printf(“%d “,i); } }
- 384 views
- 1 answers
- 0 votes
-
How to Pass Command Line Arguments in Shell Script?
- 307 views
- 1 answers
- 0 votes