Is sizeof a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
What is sizeof array?
what is a headerfile?and what will be a program without it explain nan example?
How do you write a program which produces its own source code as its output?
p*=(++q)++*--p when p=q=1 while(q<=6)
What is the ANSI C Standard?
post new interiew question and aptitude test papers
program for swapping two strings by using pointers in c language
What does sizeof function do?
What is meant by initialization and how we initialize a variable?
How can you call a function, given its name as a string?