What does the c in ctime mean?
What is the difference between fork() and vfork()?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work
What is the description for syntax errors?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
what is memory leak?
what is purpose of fflush(stdin) function
will the program compile? int i; scanf(“%d”,i); printf(“%d”,i);
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,