C Programming Who is father of C Language? F. Codd Gosling Bjarne Stroustrup James Dennis Ritchie Dr. F. Codd Gosling Bjarne Stroustrup James Dennis Ritchie Dr. ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } Syntax error 713 0289 1289 0713 Syntax error 713 0289 1289 0713 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?void main(){ char str1[] = "abcd"; char str2[] = "abcd"; if(str1==str2) printf("Equal"); else printf("Unequal");} None of these. Error Unequal Equal None of these. Error Unequal Equal ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Combining two strings. Partitioning the string into two strings. Comparing the two strings to define the larger one. Extracting a substring out of a string. Merging two strings. Combining two strings. Partitioning the string into two strings. Comparing the two strings to define the larger one. Extracting a substring out of a string. Merging two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="%dn"; p++; p++; printf(p-2, 300);} %d\n 300 Error None of These %d\n 300 Error None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 I, III and IV III and IV I and II I, II and III II and III I, III and IV III and IV I and II I, II and III II and III ANSWER DOWNLOAD EXAMIANS APP