int i=~0;
uint j=(uint)i;
j++;
printf(“%d”,j);
Write a pro-gramme to determine whether the number is even or odd?
how to find the given number is prime or not?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?
Three major criteria of scheduling.
Write a program to generate prime factors of a given integer?
What is the auto keyword good for?
Mention four important string handling functions in c languages .
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
What is the meaning of int *x[]();?
difference between i++* and *++i
How can I increase the allowable number of simultaneously open files?