Determine the Final Output:void main(){ printf("\nab"); printf("\bsi"); printf("\rha");} absiha hai asiha haasi TRUE ANSWER : ? YOUR ANSWER : ?
Determine Output:#define int charvoid main(){ int i = 65; printf("sizeof(i)=%d", sizeof(i));} sizeof(i)=2 sizeof(i)=1 None of These Compiler Error TRUE ANSWER : ? YOUR ANSWER : ?
Which of following is not a valid name for a C variable? Examians Exam veda None of these Both A and B Exam_veda TRUE ANSWER : ? YOUR ANSWER : ?
Determine Output:void main(){ int i; char a[]="�"; if(printf("%sn", a)) printf("Ok here n"); else printf("Forget itn");} Forget it Ok here None of These Error TRUE ANSWER : ? YOUR ANSWER : ?
What is the result of compiling and running this code?main(){ char string[] = "Hello World"; display(string);}void display(char *string){ printf("%s", string);} Compilation Error will print garbage value None of these. will print Hello World TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output of the program if the array begins at address 65486?#includevoid main(){ int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u", arr, &arr);} 65486, 65486 65486, 65488 65486, 65487 None of these 65486, 65490 TRUE ANSWER : ? YOUR ANSWER : ?
Determine Output:void main(){ char *p; printf("%d %d", sizeof(*p), sizeof(p));} 1 1 2 2 2 1 1 2 TRUE ANSWER : ? YOUR ANSWER : ?
The function sprintf() works like printf(), but operates on .......... stderr Data file stdin no such function in 'C'. string TRUE ANSWER : ? YOUR ANSWER : ?
Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54554 45545 54544 45445 TRUE ANSWER : ? YOUR ANSWER : ?
C was primarily developed as General purpose language System programming language None of these Data processing language TRUE ANSWER : ? YOUR ANSWER : ?