What is the value of uninitialized variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
What is the difference between struct and union in C?
how to find that no is int or float?
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
write a C program, given number is double without using addt ion and multiplication operator?ex:n=6,ans=12,pls send me ans to goviseenu@gmail.com
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
Give a fast way to multiply a number by 7
15 Answers Accenture, Aricent, Microsoft,
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
why little endian and big endian came?y they using differently? y they not used commonly ?wt is application of little and big ?
Why is malloc used?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.