what is the hardware model of CFG( context free grammar)
No Answer is Posted For this Question
Be the First to Post Answer
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
What is 1d array in c?
What is hashing in c language?
program to find the ASCII value of a number
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
Without Computer networks, Computers will be half the use. Comment.
write a program for odd numbers?
Write the following function in C. 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.
3 Answers Google, Infosys, JTL, OpenFeel,
Without using main fn and semicolon,print remainder for a given number in C language
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?