which of the following statement is wrong
a) mes=123.56;
b) con='T'*'A';
c) this='T'*20;
d) 3+a=b;
No Answer is Posted For this Question
Be the First to Post Answer
b) 4 c) 6 d) 7 32. Any C program a) must contain at least one function b) need not contain ant function c) needs input data d) none of the above 33. Using goto inside for loop is equivalent to using a) continue b) break c) return d)none of the above 34. The program fragment int a=5, b=2; printf(“%d”,a+++++b); a) prints 7 b)prints 8 c) prints 9 d)none of the above 35. printf(“ab” , “cd”,”ef”); prints a) ab abcdef c) abcdef, followed by garbage value d) none of the above 36. Consider the following program segment. i=6720; j=4; while((i%j)==0) { i=i/j; j=j+1; } On termination j will have the value a) 4 b) 8 c) 9 d) 6720
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
Reverse the part of the number which is present from position i to j. Print the new number.[without using the array] eg: num=789876 i=2 j=5 778986
How can I access a memory located at certain address?
How to implement variable argument functions ?
how to swap 2 numbers in a single statement?
write a program to compare 2 numbers without using logical operators?
Explain command-line arguments in C.
How do you access command-line arguments?
What is f'n in math?
in which language c language is written?
Why do we use int main instead of void main in c?